mirror of
https://github.com/bigchaindb/js-bigchaindb-driver.git
synced 2024-11-22 09:46:58 +01:00
6aeece49cb
Signed-off-by: getlarge <ed@getlarge.eu>
71 lines
1.7 KiB
TypeScript
71 lines
1.7 KiB
TypeScript
// Copyright BigchainDB GmbH and BigchainDB contributors
|
|
// SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
|
// Code is Apache-2.0 and docs are CC-BY-4.0
|
|
|
|
import type {
|
|
Condition,
|
|
Ed25519Sha256,
|
|
PreimageSha256,
|
|
ThresholdSha256,
|
|
} from 'crypto-conditions';
|
|
import type { TypeId, TypeName } from 'crypto-conditions/types/types';
|
|
|
|
interface BaseJSONCondition {
|
|
details: {
|
|
[key: string]: any;
|
|
};
|
|
uri: string;
|
|
}
|
|
|
|
export interface JSONCondition extends BaseJSONCondition {
|
|
details: {
|
|
type_id: TypeId;
|
|
bitmask: number;
|
|
type: 'condition';
|
|
hash: string;
|
|
max_fulfillment_length: number;
|
|
};
|
|
}
|
|
|
|
export interface PreimageSha256JSONCondition extends BaseJSONCondition {
|
|
details: {
|
|
type_id: TypeId.PreimageSha256;
|
|
bitmask: 3;
|
|
preimage?: string;
|
|
type?: 'fulfillement';
|
|
};
|
|
}
|
|
|
|
export interface ThresholdSha256JSONCondition extends BaseJSONCondition {
|
|
details: {
|
|
type: TypeName.ThresholdSha256;
|
|
subConditions: (Ed25519Sha256JSONCondition | PreimageSha256JSONCondition)[];
|
|
};
|
|
}
|
|
|
|
export interface Ed25519Sha256JSONCondition extends BaseJSONCondition {
|
|
details: { type: TypeName.Ed25519Sha256; publicKey?: string };
|
|
}
|
|
|
|
export type JSONConditionUnion =
|
|
| JSONCondition
|
|
| PreimageSha256JSONCondition
|
|
| ThresholdSha256JSONCondition
|
|
| Ed25519Sha256JSONCondition;
|
|
|
|
declare function ccJsonify(
|
|
fulfillment: PreimageSha256
|
|
): PreimageSha256JSONCondition;
|
|
|
|
declare function ccJsonify(
|
|
fulfillment: ThresholdSha256
|
|
): ThresholdSha256JSONCondition;
|
|
|
|
declare function ccJsonify(
|
|
fulfillment: Ed25519Sha256
|
|
): Ed25519Sha256JSONCondition;
|
|
|
|
declare function ccJsonify(fulfillment: Condition): JSONCondition;
|
|
|
|
export default ccJsonify;
|