@ottochain/sdk 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +305 -0
- package/dist/apps/contracts/index.d.ts +21 -0
- package/dist/apps/contracts/index.js +39 -0
- package/dist/apps/contracts/types.d.ts +24 -0
- package/dist/apps/contracts/types.js +48 -0
- package/dist/apps/identity/index.d.ts +22 -0
- package/dist/apps/identity/index.js +40 -0
- package/dist/apps/identity/types.d.ts +30 -0
- package/dist/apps/identity/types.js +53 -0
- package/dist/apps/index.d.ts +29 -0
- package/dist/apps/index.js +60 -0
- package/dist/apps/markets/index.d.ts +26 -0
- package/dist/apps/markets/index.js +46 -0
- package/dist/apps/markets/types.d.ts +185 -0
- package/dist/apps/markets/types.js +252 -0
- package/dist/apps/oracles/index.d.ts +26 -0
- package/dist/apps/oracles/index.js +46 -0
- package/dist/apps/oracles/types.d.ts +211 -0
- package/dist/apps/oracles/types.js +306 -0
- package/dist/cjs/apps/contracts/index.js +60 -0
- package/dist/cjs/apps/contracts/state-machines/contract.json +420 -0
- package/dist/cjs/apps/contracts/state-machines/escrow.json +426 -0
- package/dist/cjs/apps/contracts/types.js +48 -0
- package/dist/cjs/apps/corporate/index.js +112 -0
- package/dist/cjs/apps/corporate/state-machines/corporate-board.json +1064 -0
- package/dist/cjs/apps/corporate/state-machines/corporate-bylaws.json +751 -0
- package/dist/cjs/apps/corporate/state-machines/corporate-committee.json +957 -0
- package/dist/cjs/apps/corporate/state-machines/corporate-compliance.json +1293 -0
- package/dist/cjs/apps/corporate/state-machines/corporate-entity.json +861 -0
- package/dist/cjs/apps/corporate/state-machines/corporate-officers.json +843 -0
- package/dist/cjs/apps/corporate/state-machines/corporate-proxy.json +783 -0
- package/dist/cjs/apps/corporate/state-machines/corporate-resolution.json +1174 -0
- package/dist/cjs/apps/corporate/state-machines/corporate-securities.json +1215 -0
- package/dist/cjs/apps/corporate/state-machines/corporate-shareholders.json +1298 -0
- package/dist/cjs/apps/corporate/types.js +44 -0
- package/dist/cjs/apps/governance/index.js +203 -0
- package/dist/cjs/apps/governance/state-machines/dao-multisig.json +711 -0
- package/dist/cjs/apps/governance/state-machines/dao-single.json +258 -0
- package/dist/cjs/apps/governance/state-machines/dao-threshold.json +660 -0
- package/dist/cjs/apps/governance/state-machines/dao-token.json +680 -0
- package/dist/cjs/apps/governance/state-machines/governance-constitution.json +401 -0
- package/dist/cjs/apps/governance/state-machines/governance-executive.json +441 -0
- package/dist/cjs/apps/governance/state-machines/governance-judiciary.json +626 -0
- package/dist/cjs/apps/governance/state-machines/governance-legislature.json +726 -0
- package/dist/cjs/apps/governance/state-machines/governance-simple.json +679 -0
- package/dist/cjs/apps/governance/types.js +42 -0
- package/dist/cjs/apps/identity/constants.js +58 -0
- package/dist/cjs/apps/identity/index.js +78 -0
- package/dist/cjs/apps/identity/state-machines/agent-identity.json +320 -0
- package/dist/cjs/apps/identity/types.js +53 -0
- package/dist/cjs/apps/index.js +58 -0
- package/dist/cjs/apps/markets/index.js +55 -0
- package/dist/cjs/apps/markets/state-machines/market-universal.json +354 -0
- package/dist/cjs/apps/markets/types.js +219 -0
- package/dist/cjs/apps/oracles/index.js +62 -0
- package/dist/cjs/apps/oracles/state-machines/oracle.json +452 -0
- package/dist/cjs/apps/oracles/types.js +282 -0
- package/dist/cjs/errors.js +293 -0
- package/dist/cjs/generated/google/protobuf/struct.js +514 -0
- package/dist/cjs/generated/google/protobuf/timestamp.js +92 -0
- package/dist/cjs/generated/index.js +150 -0
- package/dist/cjs/generated/ottochain/apps/contracts/v1/contract.js +873 -0
- package/dist/cjs/generated/ottochain/apps/contracts/v1/contract_pb.js +100 -0
- package/dist/cjs/generated/ottochain/apps/corporate/v1/corporate.js +4515 -0
- package/dist/cjs/generated/ottochain/apps/corporate/v1/corporate_pb.js +392 -0
- package/dist/cjs/generated/ottochain/apps/governance/v1/governance.js +3255 -0
- package/dist/cjs/generated/ottochain/apps/governance/v1/governance_pb.js +235 -0
- package/dist/cjs/generated/ottochain/apps/identity/v1/agent.js +619 -0
- package/dist/cjs/generated/ottochain/apps/identity/v1/agent_pb.js +116 -0
- package/dist/cjs/generated/ottochain/apps/identity/v1/attestation.js +780 -0
- package/dist/cjs/generated/ottochain/apps/identity/v1/attestation_pb.js +79 -0
- package/dist/cjs/generated/ottochain/apps/markets/v1/market.js +1261 -0
- package/dist/cjs/generated/ottochain/apps/markets/v1/market_pb.js +151 -0
- package/dist/cjs/generated/ottochain/apps/oracles/v1/oracle.js +1223 -0
- package/dist/cjs/generated/ottochain/apps/oracles/v1/oracle_pb.js +109 -0
- package/dist/cjs/generated/ottochain/v1/common.js +10 -0
- package/dist/cjs/generated/ottochain/v1/common_pb.js +37 -0
- package/dist/cjs/generated/ottochain/v1/fiber.js +1057 -0
- package/dist/cjs/generated/ottochain/v1/fiber_pb.js +86 -0
- package/dist/cjs/generated/ottochain/v1/messages.js +740 -0
- package/dist/cjs/generated/ottochain/v1/messages_pb.js +44 -0
- package/dist/cjs/generated/ottochain/v1/records.js +1253 -0
- package/dist/cjs/generated/ottochain/v1/records_pb.js +44 -0
- package/dist/cjs/index.js +79 -0
- package/dist/cjs/metakit/binary.js +58 -0
- package/dist/cjs/metakit/canonicalize.js +40 -0
- package/dist/cjs/metakit/codec.js +45 -0
- package/dist/cjs/metakit/currency-transaction.js +319 -0
- package/dist/cjs/metakit/currency-types.js +13 -0
- package/dist/cjs/metakit/hash.js +84 -0
- package/dist/cjs/metakit/index.js +74 -0
- package/dist/cjs/metakit/network/client.js +78 -0
- package/dist/cjs/metakit/network/currency-l1-client.js +101 -0
- package/dist/cjs/metakit/network/data-l1-client.js +76 -0
- package/dist/cjs/metakit/network/index.js +16 -0
- package/dist/cjs/metakit/network/types.js +20 -0
- package/dist/cjs/metakit/sign.js +120 -0
- package/dist/cjs/metakit/signed-object.js +100 -0
- package/dist/cjs/metakit/types.js +14 -0
- package/dist/cjs/metakit/verify.js +217 -0
- package/dist/cjs/metakit/wallet.js +127 -0
- package/dist/cjs/ottochain/index.js +47 -0
- package/dist/cjs/ottochain/metagraph-client.js +157 -0
- package/dist/cjs/ottochain/snapshot.js +110 -0
- package/dist/cjs/ottochain/types.js +11 -0
- package/dist/cjs/package.json +1 -0
- package/dist/cjs/types.js +25 -0
- package/dist/cjs/validation.js +312 -0
- package/dist/errors.d.ts +221 -0
- package/dist/errors.js +293 -0
- package/dist/esm/apps/contracts/index.js +42 -0
- package/dist/esm/apps/contracts/state-machines/contract.json +420 -0
- package/dist/esm/apps/contracts/state-machines/escrow.json +426 -0
- package/dist/esm/apps/contracts/types.js +44 -0
- package/dist/esm/apps/corporate/index.js +57 -0
- package/dist/esm/apps/corporate/state-machines/corporate-board.json +1064 -0
- package/dist/esm/apps/corporate/state-machines/corporate-bylaws.json +751 -0
- package/dist/esm/apps/corporate/state-machines/corporate-committee.json +957 -0
- package/dist/esm/apps/corporate/state-machines/corporate-compliance.json +1293 -0
- package/dist/esm/apps/corporate/state-machines/corporate-entity.json +861 -0
- package/dist/esm/apps/corporate/state-machines/corporate-officers.json +843 -0
- package/dist/esm/apps/corporate/state-machines/corporate-proxy.json +783 -0
- package/dist/esm/apps/corporate/state-machines/corporate-resolution.json +1174 -0
- package/dist/esm/apps/corporate/state-machines/corporate-securities.json +1215 -0
- package/dist/esm/apps/corporate/state-machines/corporate-shareholders.json +1298 -0
- package/dist/esm/apps/corporate/types.js +38 -0
- package/dist/esm/apps/governance/index.js +154 -0
- package/dist/esm/apps/governance/state-machines/dao-multisig.json +711 -0
- package/dist/esm/apps/governance/state-machines/dao-single.json +258 -0
- package/dist/esm/apps/governance/state-machines/dao-threshold.json +660 -0
- package/dist/esm/apps/governance/state-machines/dao-token.json +680 -0
- package/dist/esm/apps/governance/state-machines/governance-constitution.json +401 -0
- package/dist/esm/apps/governance/state-machines/governance-executive.json +441 -0
- package/dist/esm/apps/governance/state-machines/governance-judiciary.json +626 -0
- package/dist/esm/apps/governance/state-machines/governance-legislature.json +726 -0
- package/dist/esm/apps/governance/state-machines/governance-simple.json +679 -0
- package/dist/esm/apps/governance/types.js +35 -0
- package/dist/esm/apps/identity/constants.js +53 -0
- package/dist/esm/apps/identity/index.js +50 -0
- package/dist/esm/apps/identity/state-machines/agent-identity.json +320 -0
- package/dist/esm/apps/identity/types.js +50 -0
- package/dist/esm/apps/index.js +32 -0
- package/dist/esm/apps/markets/index.js +34 -0
- package/dist/esm/apps/markets/state-machines/market-universal.json +354 -0
- package/dist/esm/apps/markets/types.js +206 -0
- package/dist/esm/apps/oracles/index.js +42 -0
- package/dist/esm/apps/oracles/state-machines/oracle.json +452 -0
- package/dist/esm/apps/oracles/types.js +267 -0
- package/dist/esm/errors.js +283 -0
- package/dist/esm/generated/google/protobuf/struct.js +508 -0
- package/dist/esm/generated/google/protobuf/timestamp.js +89 -0
- package/dist/esm/generated/index.js +26 -0
- package/dist/esm/generated/ottochain/apps/contracts/v1/contract.js +867 -0
- package/dist/esm/generated/ottochain/apps/contracts/v1/contract_pb.js +97 -0
- package/dist/esm/generated/ottochain/apps/corporate/v1/corporate.js +4493 -0
- package/dist/esm/generated/ottochain/apps/corporate/v1/corporate_pb.js +389 -0
- package/dist/esm/generated/ottochain/apps/governance/v1/governance.js +3240 -0
- package/dist/esm/generated/ottochain/apps/governance/v1/governance_pb.js +232 -0
- package/dist/esm/generated/ottochain/apps/identity/v1/agent.js +610 -0
- package/dist/esm/generated/ottochain/apps/identity/v1/agent_pb.js +113 -0
- package/dist/esm/generated/ottochain/apps/identity/v1/attestation.js +774 -0
- package/dist/esm/generated/ottochain/apps/identity/v1/attestation_pb.js +76 -0
- package/dist/esm/generated/ottochain/apps/markets/v1/market.js +1252 -0
- package/dist/esm/generated/ottochain/apps/markets/v1/market_pb.js +148 -0
- package/dist/esm/generated/ottochain/apps/oracles/v1/oracle.js +1217 -0
- package/dist/esm/generated/ottochain/apps/oracles/v1/oracle_pb.js +106 -0
- package/dist/esm/generated/ottochain/v1/common.js +7 -0
- package/dist/esm/generated/ottochain/v1/common_pb.js +34 -0
- package/dist/esm/generated/ottochain/v1/fiber.js +1051 -0
- package/dist/esm/generated/ottochain/v1/fiber_pb.js +83 -0
- package/dist/esm/generated/ottochain/v1/messages.js +737 -0
- package/dist/esm/generated/ottochain/v1/messages_pb.js +41 -0
- package/dist/esm/generated/ottochain/v1/records.js +1250 -0
- package/dist/esm/generated/ottochain/v1/records_pb.js +41 -0
- package/dist/esm/index.js +33 -0
- package/dist/esm/metakit/binary.js +53 -0
- package/dist/esm/metakit/canonicalize.js +33 -0
- package/dist/esm/metakit/codec.js +38 -0
- package/dist/esm/metakit/currency-transaction.js +306 -0
- package/dist/esm/metakit/currency-types.js +10 -0
- package/dist/esm/metakit/hash.js +77 -0
- package/dist/esm/metakit/index.js +30 -0
- package/dist/esm/metakit/network/client.js +74 -0
- package/dist/esm/metakit/network/currency-l1-client.js +97 -0
- package/dist/esm/metakit/network/data-l1-client.js +72 -0
- package/dist/esm/metakit/network/index.js +9 -0
- package/dist/esm/metakit/network/types.js +16 -0
- package/dist/esm/metakit/sign.js +114 -0
- package/dist/esm/metakit/signed-object.js +94 -0
- package/dist/esm/metakit/types.js +11 -0
- package/dist/esm/metakit/verify.js +210 -0
- package/dist/esm/metakit/wallet.js +117 -0
- package/dist/esm/ottochain/index.js +13 -0
- package/dist/esm/ottochain/metagraph-client.js +153 -0
- package/dist/esm/ottochain/snapshot.js +100 -0
- package/dist/esm/ottochain/types.js +10 -0
- package/dist/esm/package.json +1 -0
- package/dist/esm/types.js +20 -0
- package/dist/esm/validation.js +301 -0
- package/dist/generated/index.d.ts +15 -0
- package/dist/generated/index.js +34 -0
- package/dist/generated/ottochain/apps/contracts/v1/contract_pb.d.ts +274 -0
- package/dist/generated/ottochain/apps/contracts/v1/contract_pb.js +100 -0
- package/dist/generated/ottochain/apps/identity/v1/agent_pb.d.ts +211 -0
- package/dist/generated/ottochain/apps/identity/v1/agent_pb.js +116 -0
- package/dist/generated/ottochain/apps/identity/v1/attestation_pb.d.ts +238 -0
- package/dist/generated/ottochain/apps/identity/v1/attestation_pb.js +79 -0
- package/dist/generated/ottochain/apps/markets/v1/market_pb.d.ts +436 -0
- package/dist/generated/ottochain/apps/markets/v1/market_pb.js +151 -0
- package/dist/generated/ottochain/apps/oracles/v1/oracle_pb.d.ts +393 -0
- package/dist/generated/ottochain/apps/oracles/v1/oracle_pb.js +109 -0
- package/dist/generated/ottochain/v1/common_pb.d.ts +86 -0
- package/dist/generated/ottochain/v1/common_pb.js +37 -0
- package/dist/generated/ottochain/v1/fiber_pb.d.ts +292 -0
- package/dist/generated/ottochain/v1/fiber_pb.js +86 -0
- package/dist/generated/ottochain/v1/messages_pb.d.ts +190 -0
- package/dist/generated/ottochain/v1/messages_pb.js +44 -0
- package/dist/generated/ottochain/v1/records_pb.d.ts +221 -0
- package/dist/generated/ottochain/v1/records_pb.js +44 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.js +77 -0
- package/dist/metakit/binary.d.ts +38 -0
- package/dist/metakit/binary.js +58 -0
- package/dist/metakit/canonicalize.d.ts +26 -0
- package/dist/metakit/canonicalize.js +40 -0
- package/dist/metakit/codec.d.ts +16 -0
- package/dist/metakit/codec.js +45 -0
- package/dist/metakit/currency-transaction.d.ts +157 -0
- package/dist/metakit/currency-transaction.js +319 -0
- package/dist/metakit/currency-types.d.ts +55 -0
- package/dist/metakit/currency-types.js +13 -0
- package/dist/metakit/hash.d.ts +50 -0
- package/dist/metakit/hash.js +84 -0
- package/dist/metakit/index.d.ts +23 -0
- package/dist/metakit/index.js +74 -0
- package/dist/metakit/network/client.d.ts +23 -0
- package/dist/metakit/network/client.js +78 -0
- package/dist/metakit/network/currency-l1-client.d.ts +71 -0
- package/dist/metakit/network/currency-l1-client.js +101 -0
- package/dist/metakit/network/data-l1-client.d.ts +57 -0
- package/dist/metakit/network/data-l1-client.js +76 -0
- package/dist/metakit/network/index.d.ts +10 -0
- package/dist/metakit/network/index.js +16 -0
- package/dist/metakit/network/types.d.ts +74 -0
- package/dist/metakit/network/types.js +20 -0
- package/dist/metakit/sign.d.ts +65 -0
- package/dist/metakit/sign.js +120 -0
- package/dist/metakit/signed-object.d.ts +66 -0
- package/dist/metakit/signed-object.js +100 -0
- package/dist/metakit/types.d.ts +67 -0
- package/dist/metakit/types.js +14 -0
- package/dist/metakit/verify.d.ts +55 -0
- package/dist/metakit/verify.js +217 -0
- package/dist/metakit/wallet.d.ts +70 -0
- package/dist/metakit/wallet.js +127 -0
- package/dist/ottochain/index.d.ts +13 -0
- package/dist/ottochain/index.js +45 -0
- package/dist/ottochain/metagraph-client.d.ts +111 -0
- package/dist/ottochain/metagraph-client.js +157 -0
- package/dist/ottochain/snapshot.d.ts +86 -0
- package/dist/ottochain/snapshot.js +110 -0
- package/dist/ottochain/types.d.ts +278 -0
- package/dist/ottochain/types.js +11 -0
- package/dist/types/apps/contracts/index.d.ts +30 -0
- package/dist/types/apps/contracts/types.d.ts +24 -0
- package/dist/types/apps/corporate/index.d.ts +27 -0
- package/dist/types/apps/corporate/types.d.ts +9861 -0
- package/dist/types/apps/governance/index.d.ts +77 -0
- package/dist/types/apps/governance/types.d.ts +344 -0
- package/dist/types/apps/identity/constants.d.ts +27 -0
- package/dist/types/apps/identity/index.d.ts +39 -0
- package/dist/types/apps/identity/types.d.ts +30 -0
- package/dist/types/apps/index.d.ts +31 -0
- package/dist/types/apps/markets/index.d.ts +26 -0
- package/dist/types/apps/markets/types.d.ts +155 -0
- package/dist/types/apps/oracles/index.d.ts +34 -0
- package/dist/types/apps/oracles/types.d.ts +193 -0
- package/dist/types/errors.d.ts +221 -0
- package/dist/types/generated/google/protobuf/struct.d.ts +134 -0
- package/dist/types/generated/google/protobuf/timestamp.d.ts +134 -0
- package/dist/types/generated/index.d.ts +18 -0
- package/dist/types/generated/ottochain/apps/contracts/v1/contract.d.ts +112 -0
- package/dist/types/generated/ottochain/apps/contracts/v1/contract_pb.d.ts +274 -0
- package/dist/types/generated/ottochain/apps/corporate/v1/corporate.d.ts +376 -0
- package/dist/types/generated/ottochain/apps/corporate/v1/corporate_pb.d.ts +1172 -0
- package/dist/types/generated/ottochain/apps/governance/v1/governance.d.ts +296 -0
- package/dist/types/generated/ottochain/apps/governance/v1/governance_pb.d.ts +772 -0
- package/dist/types/generated/ottochain/apps/identity/v1/agent.d.ts +94 -0
- package/dist/types/generated/ottochain/apps/identity/v1/agent_pb.d.ts +211 -0
- package/dist/types/generated/ottochain/apps/identity/v1/attestation.d.ts +102 -0
- package/dist/types/generated/ottochain/apps/identity/v1/attestation_pb.d.ts +238 -0
- package/dist/types/generated/ottochain/apps/markets/v1/market.d.ts +174 -0
- package/dist/types/generated/ottochain/apps/markets/v1/market_pb.d.ts +436 -0
- package/dist/types/generated/ottochain/apps/oracles/v1/oracle.d.ts +150 -0
- package/dist/types/generated/ottochain/apps/oracles/v1/oracle_pb.d.ts +393 -0
- package/dist/types/generated/ottochain/v1/common.d.ts +1 -0
- package/dist/types/generated/ottochain/v1/common_pb.d.ts +86 -0
- package/dist/types/generated/ottochain/v1/fiber.d.ts +130 -0
- package/dist/types/generated/ottochain/v1/fiber_pb.d.ts +292 -0
- package/dist/types/generated/ottochain/v1/messages.d.ts +89 -0
- package/dist/types/generated/ottochain/v1/messages_pb.d.ts +190 -0
- package/dist/types/generated/ottochain/v1/records.d.ts +128 -0
- package/dist/types/generated/ottochain/v1/records_pb.d.ts +221 -0
- package/dist/types/index.d.ts +22 -0
- package/dist/types/metakit/binary.d.ts +38 -0
- package/dist/types/metakit/canonicalize.d.ts +26 -0
- package/dist/types/metakit/codec.d.ts +16 -0
- package/dist/types/metakit/currency-transaction.d.ts +157 -0
- package/dist/types/metakit/currency-types.d.ts +55 -0
- package/dist/types/metakit/hash.d.ts +50 -0
- package/dist/types/metakit/index.d.ts +23 -0
- package/dist/types/metakit/network/client.d.ts +23 -0
- package/dist/types/metakit/network/currency-l1-client.d.ts +71 -0
- package/dist/types/metakit/network/data-l1-client.d.ts +57 -0
- package/dist/types/metakit/network/index.d.ts +10 -0
- package/dist/types/metakit/network/types.d.ts +74 -0
- package/dist/types/metakit/sign.d.ts +65 -0
- package/dist/types/metakit/signed-object.d.ts +66 -0
- package/dist/types/metakit/types.d.ts +67 -0
- package/dist/types/metakit/verify.d.ts +55 -0
- package/dist/types/metakit/wallet.d.ts +70 -0
- package/dist/types/ottochain/index.d.ts +13 -0
- package/dist/types/ottochain/metagraph-client.d.ts +111 -0
- package/dist/types/ottochain/snapshot.d.ts +86 -0
- package/dist/types/ottochain/types.d.ts +210 -0
- package/dist/types/types.d.ts +51 -0
- package/dist/types/validation.d.ts +449 -0
- package/dist/validation.d.ts +449 -0
- package/dist/validation.js +312 -0
- package/package.json +136 -0
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { Address, FiberOrdinal, HashValue, SnapshotOrdinal, StateId } from "./common_pb.js";
|
|
3
|
+
import type { AccessControlPolicy, EventReceipt, FiberLogEntry, FiberStatus, ScriptInvocation, StateMachineDefinition } from "./fiber_pb.js";
|
|
4
|
+
import type { Value } from "@bufbuild/protobuf/wkt";
|
|
5
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
6
|
+
/**
|
|
7
|
+
* Describes the file ottochain/v1/records.proto.
|
|
8
|
+
*/
|
|
9
|
+
export declare const file_ottochain_v1_records: GenFile;
|
|
10
|
+
/**
|
|
11
|
+
* State machine fiber record - on-chain representation
|
|
12
|
+
*
|
|
13
|
+
* @generated from message ottochain.v1.StateMachineFiberRecord
|
|
14
|
+
*/
|
|
15
|
+
export type StateMachineFiberRecord = Message<"ottochain.v1.StateMachineFiberRecord"> & {
|
|
16
|
+
/**
|
|
17
|
+
* @generated from field: string fiber_id = 1;
|
|
18
|
+
*/
|
|
19
|
+
fiberId: string;
|
|
20
|
+
/**
|
|
21
|
+
* @generated from field: ottochain.v1.SnapshotOrdinal creation_ordinal = 2;
|
|
22
|
+
*/
|
|
23
|
+
creationOrdinal?: SnapshotOrdinal;
|
|
24
|
+
/**
|
|
25
|
+
* @generated from field: ottochain.v1.SnapshotOrdinal previous_update_ordinal = 3;
|
|
26
|
+
*/
|
|
27
|
+
previousUpdateOrdinal?: SnapshotOrdinal;
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: ottochain.v1.SnapshotOrdinal latest_update_ordinal = 4;
|
|
30
|
+
*/
|
|
31
|
+
latestUpdateOrdinal?: SnapshotOrdinal;
|
|
32
|
+
/**
|
|
33
|
+
* @generated from field: ottochain.v1.StateMachineDefinition definition = 5;
|
|
34
|
+
*/
|
|
35
|
+
definition?: StateMachineDefinition;
|
|
36
|
+
/**
|
|
37
|
+
* @generated from field: ottochain.v1.StateId current_state = 6;
|
|
38
|
+
*/
|
|
39
|
+
currentState?: StateId;
|
|
40
|
+
/**
|
|
41
|
+
* @generated from field: google.protobuf.Value state_data = 7;
|
|
42
|
+
*/
|
|
43
|
+
stateData?: Value;
|
|
44
|
+
/**
|
|
45
|
+
* @generated from field: ottochain.v1.HashValue state_data_hash = 8;
|
|
46
|
+
*/
|
|
47
|
+
stateDataHash?: HashValue;
|
|
48
|
+
/**
|
|
49
|
+
* @generated from field: ottochain.v1.FiberOrdinal sequence_number = 9;
|
|
50
|
+
*/
|
|
51
|
+
sequenceNumber?: FiberOrdinal;
|
|
52
|
+
/**
|
|
53
|
+
* @generated from field: repeated ottochain.v1.Address owners = 10;
|
|
54
|
+
*/
|
|
55
|
+
owners: Address[];
|
|
56
|
+
/**
|
|
57
|
+
* @generated from field: ottochain.v1.FiberStatus status = 11;
|
|
58
|
+
*/
|
|
59
|
+
status: FiberStatus;
|
|
60
|
+
/**
|
|
61
|
+
* @generated from field: optional ottochain.v1.EventReceipt last_receipt = 12;
|
|
62
|
+
*/
|
|
63
|
+
lastReceipt?: EventReceipt;
|
|
64
|
+
/**
|
|
65
|
+
* @generated from field: optional string parent_fiber_id = 13;
|
|
66
|
+
*/
|
|
67
|
+
parentFiberId?: string;
|
|
68
|
+
/**
|
|
69
|
+
* @generated from field: repeated string child_fiber_ids = 14;
|
|
70
|
+
*/
|
|
71
|
+
childFiberIds: string[];
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* Describes the message ottochain.v1.StateMachineFiberRecord.
|
|
75
|
+
* Use `create(StateMachineFiberRecordSchema)` to create a new message.
|
|
76
|
+
*/
|
|
77
|
+
export declare const StateMachineFiberRecordSchema: GenMessage<StateMachineFiberRecord>;
|
|
78
|
+
/**
|
|
79
|
+
* Script fiber record - on-chain representation
|
|
80
|
+
*
|
|
81
|
+
* @generated from message ottochain.v1.ScriptFiberRecord
|
|
82
|
+
*/
|
|
83
|
+
export type ScriptFiberRecord = Message<"ottochain.v1.ScriptFiberRecord"> & {
|
|
84
|
+
/**
|
|
85
|
+
* @generated from field: string fiber_id = 1;
|
|
86
|
+
*/
|
|
87
|
+
fiberId: string;
|
|
88
|
+
/**
|
|
89
|
+
* @generated from field: ottochain.v1.SnapshotOrdinal creation_ordinal = 2;
|
|
90
|
+
*/
|
|
91
|
+
creationOrdinal?: SnapshotOrdinal;
|
|
92
|
+
/**
|
|
93
|
+
* @generated from field: ottochain.v1.SnapshotOrdinal latest_update_ordinal = 3;
|
|
94
|
+
*/
|
|
95
|
+
latestUpdateOrdinal?: SnapshotOrdinal;
|
|
96
|
+
/**
|
|
97
|
+
* @generated from field: google.protobuf.Value script_program = 4;
|
|
98
|
+
*/
|
|
99
|
+
scriptProgram?: Value;
|
|
100
|
+
/**
|
|
101
|
+
* @generated from field: optional google.protobuf.Value state_data = 5;
|
|
102
|
+
*/
|
|
103
|
+
stateData?: Value;
|
|
104
|
+
/**
|
|
105
|
+
* @generated from field: optional ottochain.v1.HashValue state_data_hash = 6;
|
|
106
|
+
*/
|
|
107
|
+
stateDataHash?: HashValue;
|
|
108
|
+
/**
|
|
109
|
+
* @generated from field: ottochain.v1.AccessControlPolicy access_control = 7;
|
|
110
|
+
*/
|
|
111
|
+
accessControl?: AccessControlPolicy;
|
|
112
|
+
/**
|
|
113
|
+
* @generated from field: ottochain.v1.FiberOrdinal sequence_number = 8;
|
|
114
|
+
*/
|
|
115
|
+
sequenceNumber?: FiberOrdinal;
|
|
116
|
+
/**
|
|
117
|
+
* @generated from field: repeated ottochain.v1.Address owners = 9;
|
|
118
|
+
*/
|
|
119
|
+
owners: Address[];
|
|
120
|
+
/**
|
|
121
|
+
* @generated from field: ottochain.v1.FiberStatus status = 10;
|
|
122
|
+
*/
|
|
123
|
+
status: FiberStatus;
|
|
124
|
+
/**
|
|
125
|
+
* @generated from field: optional ottochain.v1.ScriptInvocation last_invocation = 11;
|
|
126
|
+
*/
|
|
127
|
+
lastInvocation?: ScriptInvocation;
|
|
128
|
+
};
|
|
129
|
+
/**
|
|
130
|
+
* Describes the message ottochain.v1.ScriptFiberRecord.
|
|
131
|
+
* Use `create(ScriptFiberRecordSchema)` to create a new message.
|
|
132
|
+
*/
|
|
133
|
+
export declare const ScriptFiberRecordSchema: GenMessage<ScriptFiberRecord>;
|
|
134
|
+
/**
|
|
135
|
+
* Fiber commit - lightweight proof in on-chain state
|
|
136
|
+
*
|
|
137
|
+
* @generated from message ottochain.v1.FiberCommit
|
|
138
|
+
*/
|
|
139
|
+
export type FiberCommit = Message<"ottochain.v1.FiberCommit"> & {
|
|
140
|
+
/**
|
|
141
|
+
* @generated from field: ottochain.v1.HashValue record_hash = 1;
|
|
142
|
+
*/
|
|
143
|
+
recordHash?: HashValue;
|
|
144
|
+
/**
|
|
145
|
+
* @generated from field: optional ottochain.v1.HashValue state_data_hash = 2;
|
|
146
|
+
*/
|
|
147
|
+
stateDataHash?: HashValue;
|
|
148
|
+
/**
|
|
149
|
+
* @generated from field: ottochain.v1.FiberOrdinal sequence_number = 3;
|
|
150
|
+
*/
|
|
151
|
+
sequenceNumber?: FiberOrdinal;
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* Describes the message ottochain.v1.FiberCommit.
|
|
155
|
+
* Use `create(FiberCommitSchema)` to create a new message.
|
|
156
|
+
*/
|
|
157
|
+
export declare const FiberCommitSchema: GenMessage<FiberCommit>;
|
|
158
|
+
/**
|
|
159
|
+
* On-chain state
|
|
160
|
+
*
|
|
161
|
+
* @generated from message ottochain.v1.OnChainState
|
|
162
|
+
*/
|
|
163
|
+
export type OnChainState = Message<"ottochain.v1.OnChainState"> & {
|
|
164
|
+
/**
|
|
165
|
+
* @generated from field: map<string, ottochain.v1.FiberCommit> fiber_commits = 1;
|
|
166
|
+
*/
|
|
167
|
+
fiberCommits: {
|
|
168
|
+
[key: string]: FiberCommit;
|
|
169
|
+
};
|
|
170
|
+
/**
|
|
171
|
+
* @generated from field: map<string, ottochain.v1.FiberLogEntryList> latest_logs = 2;
|
|
172
|
+
*/
|
|
173
|
+
latestLogs: {
|
|
174
|
+
[key: string]: FiberLogEntryList;
|
|
175
|
+
};
|
|
176
|
+
};
|
|
177
|
+
/**
|
|
178
|
+
* Describes the message ottochain.v1.OnChainState.
|
|
179
|
+
* Use `create(OnChainStateSchema)` to create a new message.
|
|
180
|
+
*/
|
|
181
|
+
export declare const OnChainStateSchema: GenMessage<OnChainState>;
|
|
182
|
+
/**
|
|
183
|
+
* Helper for map of log entries
|
|
184
|
+
*
|
|
185
|
+
* @generated from message ottochain.v1.FiberLogEntryList
|
|
186
|
+
*/
|
|
187
|
+
export type FiberLogEntryList = Message<"ottochain.v1.FiberLogEntryList"> & {
|
|
188
|
+
/**
|
|
189
|
+
* @generated from field: repeated ottochain.v1.FiberLogEntry entries = 1;
|
|
190
|
+
*/
|
|
191
|
+
entries: FiberLogEntry[];
|
|
192
|
+
};
|
|
193
|
+
/**
|
|
194
|
+
* Describes the message ottochain.v1.FiberLogEntryList.
|
|
195
|
+
* Use `create(FiberLogEntryListSchema)` to create a new message.
|
|
196
|
+
*/
|
|
197
|
+
export declare const FiberLogEntryListSchema: GenMessage<FiberLogEntryList>;
|
|
198
|
+
/**
|
|
199
|
+
* Calculated state - queryable via ML0 endpoints
|
|
200
|
+
*
|
|
201
|
+
* @generated from message ottochain.v1.CalculatedState
|
|
202
|
+
*/
|
|
203
|
+
export type CalculatedState = Message<"ottochain.v1.CalculatedState"> & {
|
|
204
|
+
/**
|
|
205
|
+
* @generated from field: map<string, ottochain.v1.StateMachineFiberRecord> state_machines = 1;
|
|
206
|
+
*/
|
|
207
|
+
stateMachines: {
|
|
208
|
+
[key: string]: StateMachineFiberRecord;
|
|
209
|
+
};
|
|
210
|
+
/**
|
|
211
|
+
* @generated from field: map<string, ottochain.v1.ScriptFiberRecord> scripts = 2;
|
|
212
|
+
*/
|
|
213
|
+
scripts: {
|
|
214
|
+
[key: string]: ScriptFiberRecord;
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
/**
|
|
218
|
+
* Describes the message ottochain.v1.CalculatedState.
|
|
219
|
+
* Use `create(CalculatedStateSchema)` to create a new message.
|
|
220
|
+
*/
|
|
221
|
+
export declare const CalculatedStateSchema: GenMessage<CalculatedState>;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @generated by protoc-gen-es v2.2.0 with parameter "target=ts,import_extension=.js"
|
|
3
|
+
// @generated from file ottochain/v1/records.proto (package ottochain.v1, syntax proto3)
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.CalculatedStateSchema = exports.FiberLogEntryListSchema = exports.OnChainStateSchema = exports.FiberCommitSchema = exports.ScriptFiberRecordSchema = exports.StateMachineFiberRecordSchema = exports.file_ottochain_v1_records = void 0;
|
|
7
|
+
const codegenv1_1 = require("@bufbuild/protobuf/codegenv1");
|
|
8
|
+
const common_pb_js_1 = require("./common_pb.js");
|
|
9
|
+
const fiber_pb_js_1 = require("./fiber_pb.js");
|
|
10
|
+
const wkt_1 = require("@bufbuild/protobuf/wkt");
|
|
11
|
+
/**
|
|
12
|
+
* Describes the file ottochain/v1/records.proto.
|
|
13
|
+
*/
|
|
14
|
+
exports.file_ottochain_v1_records = (0, codegenv1_1.fileDesc)("ChpvdHRvY2hhaW4vdjEvcmVjb3Jkcy5wcm90bxIMb3R0b2NoYWluLnYxIsIFChdTdGF0ZU1hY2hpbmVGaWJlclJlY29yZBIQCghmaWJlcl9pZBgBIAEoCRI3ChBjcmVhdGlvbl9vcmRpbmFsGAIgASgLMh0ub3R0b2NoYWluLnYxLlNuYXBzaG90T3JkaW5hbBI+ChdwcmV2aW91c191cGRhdGVfb3JkaW5hbBgDIAEoCzIdLm90dG9jaGFpbi52MS5TbmFwc2hvdE9yZGluYWwSPAoVbGF0ZXN0X3VwZGF0ZV9vcmRpbmFsGAQgASgLMh0ub3R0b2NoYWluLnYxLlNuYXBzaG90T3JkaW5hbBI4CgpkZWZpbml0aW9uGAUgASgLMiQub3R0b2NoYWluLnYxLlN0YXRlTWFjaGluZURlZmluaXRpb24SLAoNY3VycmVudF9zdGF0ZRgGIAEoCzIVLm90dG9jaGFpbi52MS5TdGF0ZUlkEioKCnN0YXRlX2RhdGEYByABKAsyFi5nb29nbGUucHJvdG9idWYuVmFsdWUSMAoPc3RhdGVfZGF0YV9oYXNoGAggASgLMhcub3R0b2NoYWluLnYxLkhhc2hWYWx1ZRIzCg9zZXF1ZW5jZV9udW1iZXIYCSABKAsyGi5vdHRvY2hhaW4udjEuRmliZXJPcmRpbmFsEiUKBm93bmVycxgKIAMoCzIVLm90dG9jaGFpbi52MS5BZGRyZXNzEikKBnN0YXR1cxgLIAEoDjIZLm90dG9jaGFpbi52MS5GaWJlclN0YXR1cxI1CgxsYXN0X3JlY2VpcHQYDCABKAsyGi5vdHRvY2hhaW4udjEuRXZlbnRSZWNlaXB0SACIAQESHAoPcGFyZW50X2ZpYmVyX2lkGA0gASgJSAGIAQESFwoPY2hpbGRfZmliZXJfaWRzGA4gAygJQg8KDV9sYXN0X3JlY2VpcHRCEgoQX3BhcmVudF9maWJlcl9pZCLrBAoRU2NyaXB0RmliZXJSZWNvcmQSEAoIZmliZXJfaWQYASABKAkSNwoQY3JlYXRpb25fb3JkaW5hbBgCIAEoCzIdLm90dG9jaGFpbi52MS5TbmFwc2hvdE9yZGluYWwSPAoVbGF0ZXN0X3VwZGF0ZV9vcmRpbmFsGAMgASgLMh0ub3R0b2NoYWluLnYxLlNuYXBzaG90T3JkaW5hbBIuCg5zY3JpcHRfcHJvZ3JhbRgEIAEoCzIWLmdvb2dsZS5wcm90b2J1Zi5WYWx1ZRIvCgpzdGF0ZV9kYXRhGAUgASgLMhYuZ29vZ2xlLnByb3RvYnVmLlZhbHVlSACIAQESNQoPc3RhdGVfZGF0YV9oYXNoGAYgASgLMhcub3R0b2NoYWluLnYxLkhhc2hWYWx1ZUgBiAEBEjkKDmFjY2Vzc19jb250cm9sGAcgASgLMiEub3R0b2NoYWluLnYxLkFjY2Vzc0NvbnRyb2xQb2xpY3kSMwoPc2VxdWVuY2VfbnVtYmVyGAggASgLMhoub3R0b2NoYWluLnYxLkZpYmVyT3JkaW5hbBIlCgZvd25lcnMYCSADKAsyFS5vdHRvY2hhaW4udjEuQWRkcmVzcxIpCgZzdGF0dXMYCiABKA4yGS5vdHRvY2hhaW4udjEuRmliZXJTdGF0dXMSPAoPbGFzdF9pbnZvY2F0aW9uGAsgASgLMh4ub3R0b2NoYWluLnYxLlNjcmlwdEludm9jYXRpb25IAogBAUINCgtfc3RhdGVfZGF0YUISChBfc3RhdGVfZGF0YV9oYXNoQhIKEF9sYXN0X2ludm9jYXRpb24iuwEKC0ZpYmVyQ29tbWl0EiwKC3JlY29yZF9oYXNoGAEgASgLMhcub3R0b2NoYWluLnYxLkhhc2hWYWx1ZRI1Cg9zdGF0ZV9kYXRhX2hhc2gYAiABKAsyFy5vdHRvY2hhaW4udjEuSGFzaFZhbHVlSACIAQESMwoPc2VxdWVuY2VfbnVtYmVyGAMgASgLMhoub3R0b2NoYWluLnYxLkZpYmVyT3JkaW5hbEISChBfc3RhdGVfZGF0YV9oYXNoIrgCCgxPbkNoYWluU3RhdGUSQwoNZmliZXJfY29tbWl0cxgBIAMoCzIsLm90dG9jaGFpbi52MS5PbkNoYWluU3RhdGUuRmliZXJDb21taXRzRW50cnkSPwoLbGF0ZXN0X2xvZ3MYAiADKAsyKi5vdHRvY2hhaW4udjEuT25DaGFpblN0YXRlLkxhdGVzdExvZ3NFbnRyeRpOChFGaWJlckNvbW1pdHNFbnRyeRILCgNrZXkYASABKAkSKAoFdmFsdWUYAiABKAsyGS5vdHRvY2hhaW4udjEuRmliZXJDb21taXQ6AjgBGlIKD0xhdGVzdExvZ3NFbnRyeRILCgNrZXkYASABKAkSLgoFdmFsdWUYAiABKAsyHy5vdHRvY2hhaW4udjEuRmliZXJMb2dFbnRyeUxpc3Q6AjgBIkEKEUZpYmVyTG9nRW50cnlMaXN0EiwKB2VudHJpZXMYASADKAsyGy5vdHRvY2hhaW4udjEuRmliZXJMb2dFbnRyeSLGAgoPQ2FsY3VsYXRlZFN0YXRlEkgKDnN0YXRlX21hY2hpbmVzGAEgAygLMjAub3R0b2NoYWluLnYxLkNhbGN1bGF0ZWRTdGF0ZS5TdGF0ZU1hY2hpbmVzRW50cnkSOwoHc2NyaXB0cxgCIAMoCzIqLm90dG9jaGFpbi52MS5DYWxjdWxhdGVkU3RhdGUuU2NyaXB0c0VudHJ5GlsKElN0YXRlTWFjaGluZXNFbnRyeRILCgNrZXkYASABKAkSNAoFdmFsdWUYAiABKAsyJS5vdHRvY2hhaW4udjEuU3RhdGVNYWNoaW5lRmliZXJSZWNvcmQ6AjgBGk8KDFNjcmlwdHNFbnRyeRILCgNrZXkYASABKAkSLgoFdmFsdWUYAiABKAsyHy5vdHRvY2hhaW4udjEuU2NyaXB0RmliZXJSZWNvcmQ6AjgBQnEKEGNvbS5vdHRvY2hhaW4udjFCDFJlY29yZHNQcm90b1ABogIDT1hYqgIMT3R0b2NoYWluLlYxygIMT3R0b2NoYWluXFYx4gIYT3R0b2NoYWluXFYxXEdQQk1ldGFkYXRh6gINT3R0b2NoYWluOjpWMWIGcHJvdG8z", [common_pb_js_1.file_ottochain_v1_common, fiber_pb_js_1.file_ottochain_v1_fiber, wkt_1.file_google_protobuf_struct]);
|
|
15
|
+
/**
|
|
16
|
+
* Describes the message ottochain.v1.StateMachineFiberRecord.
|
|
17
|
+
* Use `create(StateMachineFiberRecordSchema)` to create a new message.
|
|
18
|
+
*/
|
|
19
|
+
exports.StateMachineFiberRecordSchema = (0, codegenv1_1.messageDesc)(exports.file_ottochain_v1_records, 0);
|
|
20
|
+
/**
|
|
21
|
+
* Describes the message ottochain.v1.ScriptFiberRecord.
|
|
22
|
+
* Use `create(ScriptFiberRecordSchema)` to create a new message.
|
|
23
|
+
*/
|
|
24
|
+
exports.ScriptFiberRecordSchema = (0, codegenv1_1.messageDesc)(exports.file_ottochain_v1_records, 1);
|
|
25
|
+
/**
|
|
26
|
+
* Describes the message ottochain.v1.FiberCommit.
|
|
27
|
+
* Use `create(FiberCommitSchema)` to create a new message.
|
|
28
|
+
*/
|
|
29
|
+
exports.FiberCommitSchema = (0, codegenv1_1.messageDesc)(exports.file_ottochain_v1_records, 2);
|
|
30
|
+
/**
|
|
31
|
+
* Describes the message ottochain.v1.OnChainState.
|
|
32
|
+
* Use `create(OnChainStateSchema)` to create a new message.
|
|
33
|
+
*/
|
|
34
|
+
exports.OnChainStateSchema = (0, codegenv1_1.messageDesc)(exports.file_ottochain_v1_records, 3);
|
|
35
|
+
/**
|
|
36
|
+
* Describes the message ottochain.v1.FiberLogEntryList.
|
|
37
|
+
* Use `create(FiberLogEntryListSchema)` to create a new message.
|
|
38
|
+
*/
|
|
39
|
+
exports.FiberLogEntryListSchema = (0, codegenv1_1.messageDesc)(exports.file_ottochain_v1_records, 4);
|
|
40
|
+
/**
|
|
41
|
+
* Describes the message ottochain.v1.CalculatedState.
|
|
42
|
+
* Use `create(CalculatedStateSchema)` to create a new message.
|
|
43
|
+
*/
|
|
44
|
+
exports.CalculatedStateSchema = (0, codegenv1_1.messageDesc)(exports.file_ottochain_v1_records, 5);
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ottochain SDK
|
|
3
|
+
*
|
|
4
|
+
* Unified SDK combining metakit framework operations with ottochain domain types.
|
|
5
|
+
*
|
|
6
|
+
* Structure:
|
|
7
|
+
* - `metakit` — Signing, encoding, hashing, and network clients for Constellation metagraphs
|
|
8
|
+
* - `generated` — Protobuf-generated types (source of truth)
|
|
9
|
+
* - `apps/identity` — Agent Identity application types
|
|
10
|
+
* - `apps/contracts` — Contract application types
|
|
11
|
+
* - `errors` — Custom error classes for structured error handling
|
|
12
|
+
* - `validation` — Input validation with Zod schemas
|
|
13
|
+
*
|
|
14
|
+
* @packageDocumentation
|
|
15
|
+
*/
|
|
16
|
+
export * from './metakit/index.js';
|
|
17
|
+
export * from './generated/index.js';
|
|
18
|
+
export { OttoChainError, NetworkError, ValidationError, SigningError, TransactionError, ErrorCode, isErrorCode, wrapError, } from './errors.js';
|
|
19
|
+
export { DagAddressSchema, PrivateKeySchema, PublicKeySchema, KeyPairSchema, SignatureProofSchema, SignedSchema, TransactionReferenceSchema, CurrencyTransactionValueSchema, CurrencyTransactionSchema, TransferParamsSchema, AgentIdentityRegistrationSchema, PlatformLinkSchema, ContractTermsSchema, ProposeContractRequestSchema, AcceptContractRequestSchema, CompleteContractRequestSchema, validate, validatePrivateKey, validatePublicKey, validateAddress, validateKeyPair, safeParse, assert, type ValidatedKeyPair, type ValidatedSignatureProof, type ValidatedCurrencyTransaction, type ValidatedTransferParams, type ValidatedAgentIdentityRegistration, type ValidatedPlatformLink, type ValidatedProposeContractRequest, type ValidatedAcceptContractRequest, type ValidatedCompleteContractRequest, } from './validation.js';
|
|
20
|
+
export * from './errors.js';
|
|
21
|
+
export * from './validation.js';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Ottochain SDK
|
|
4
|
+
*
|
|
5
|
+
* Unified SDK combining metakit framework operations with ottochain domain types.
|
|
6
|
+
*
|
|
7
|
+
* Structure:
|
|
8
|
+
* - `metakit` — Signing, encoding, hashing, and network clients for Constellation metagraphs
|
|
9
|
+
* - `generated` — Protobuf-generated types (source of truth)
|
|
10
|
+
* - `apps/identity` — Agent Identity application types
|
|
11
|
+
* - `apps/contracts` — Contract application types
|
|
12
|
+
* - `errors` — Custom error classes for structured error handling
|
|
13
|
+
* - `validation` — Input validation with Zod schemas
|
|
14
|
+
*
|
|
15
|
+
* @packageDocumentation
|
|
16
|
+
*/
|
|
17
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
20
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
21
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
22
|
+
}
|
|
23
|
+
Object.defineProperty(o, k2, desc);
|
|
24
|
+
}) : (function(o, m, k, k2) {
|
|
25
|
+
if (k2 === undefined) k2 = k;
|
|
26
|
+
o[k2] = m[k];
|
|
27
|
+
}));
|
|
28
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
29
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
30
|
+
};
|
|
31
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32
|
+
exports.assert = exports.safeParse = exports.validateKeyPair = exports.validateAddress = exports.validatePublicKey = exports.validatePrivateKey = exports.validate = exports.CompleteContractRequestSchema = exports.AcceptContractRequestSchema = exports.ProposeContractRequestSchema = exports.ContractTermsSchema = exports.PlatformLinkSchema = exports.AgentIdentityRegistrationSchema = exports.TransferParamsSchema = exports.CurrencyTransactionSchema = exports.CurrencyTransactionValueSchema = exports.TransactionReferenceSchema = exports.SignedSchema = exports.SignatureProofSchema = exports.KeyPairSchema = exports.PublicKeySchema = exports.PrivateKeySchema = exports.DagAddressSchema = exports.wrapError = exports.isErrorCode = exports.ErrorCode = exports.TransactionError = exports.SigningError = exports.ValidationError = exports.NetworkError = exports.OttoChainError = void 0;
|
|
33
|
+
// Metakit utilities (signing, hashing, HTTP client)
|
|
34
|
+
__exportStar(require("./metakit/index.js"), exports);
|
|
35
|
+
// Generated protobuf types (canonical definitions)
|
|
36
|
+
__exportStar(require("./generated/index.js"), exports);
|
|
37
|
+
// Custom error classes
|
|
38
|
+
var errors_js_1 = require("./errors.js");
|
|
39
|
+
Object.defineProperty(exports, "OttoChainError", { enumerable: true, get: function () { return errors_js_1.OttoChainError; } });
|
|
40
|
+
Object.defineProperty(exports, "NetworkError", { enumerable: true, get: function () { return errors_js_1.NetworkError; } });
|
|
41
|
+
Object.defineProperty(exports, "ValidationError", { enumerable: true, get: function () { return errors_js_1.ValidationError; } });
|
|
42
|
+
Object.defineProperty(exports, "SigningError", { enumerable: true, get: function () { return errors_js_1.SigningError; } });
|
|
43
|
+
Object.defineProperty(exports, "TransactionError", { enumerable: true, get: function () { return errors_js_1.TransactionError; } });
|
|
44
|
+
Object.defineProperty(exports, "ErrorCode", { enumerable: true, get: function () { return errors_js_1.ErrorCode; } });
|
|
45
|
+
Object.defineProperty(exports, "isErrorCode", { enumerable: true, get: function () { return errors_js_1.isErrorCode; } });
|
|
46
|
+
Object.defineProperty(exports, "wrapError", { enumerable: true, get: function () { return errors_js_1.wrapError; } });
|
|
47
|
+
// Validation schemas and helpers
|
|
48
|
+
var validation_js_1 = require("./validation.js");
|
|
49
|
+
// Schemas
|
|
50
|
+
Object.defineProperty(exports, "DagAddressSchema", { enumerable: true, get: function () { return validation_js_1.DagAddressSchema; } });
|
|
51
|
+
Object.defineProperty(exports, "PrivateKeySchema", { enumerable: true, get: function () { return validation_js_1.PrivateKeySchema; } });
|
|
52
|
+
Object.defineProperty(exports, "PublicKeySchema", { enumerable: true, get: function () { return validation_js_1.PublicKeySchema; } });
|
|
53
|
+
Object.defineProperty(exports, "KeyPairSchema", { enumerable: true, get: function () { return validation_js_1.KeyPairSchema; } });
|
|
54
|
+
Object.defineProperty(exports, "SignatureProofSchema", { enumerable: true, get: function () { return validation_js_1.SignatureProofSchema; } });
|
|
55
|
+
Object.defineProperty(exports, "SignedSchema", { enumerable: true, get: function () { return validation_js_1.SignedSchema; } });
|
|
56
|
+
Object.defineProperty(exports, "TransactionReferenceSchema", { enumerable: true, get: function () { return validation_js_1.TransactionReferenceSchema; } });
|
|
57
|
+
Object.defineProperty(exports, "CurrencyTransactionValueSchema", { enumerable: true, get: function () { return validation_js_1.CurrencyTransactionValueSchema; } });
|
|
58
|
+
Object.defineProperty(exports, "CurrencyTransactionSchema", { enumerable: true, get: function () { return validation_js_1.CurrencyTransactionSchema; } });
|
|
59
|
+
Object.defineProperty(exports, "TransferParamsSchema", { enumerable: true, get: function () { return validation_js_1.TransferParamsSchema; } });
|
|
60
|
+
Object.defineProperty(exports, "AgentIdentityRegistrationSchema", { enumerable: true, get: function () { return validation_js_1.AgentIdentityRegistrationSchema; } });
|
|
61
|
+
Object.defineProperty(exports, "PlatformLinkSchema", { enumerable: true, get: function () { return validation_js_1.PlatformLinkSchema; } });
|
|
62
|
+
Object.defineProperty(exports, "ContractTermsSchema", { enumerable: true, get: function () { return validation_js_1.ContractTermsSchema; } });
|
|
63
|
+
Object.defineProperty(exports, "ProposeContractRequestSchema", { enumerable: true, get: function () { return validation_js_1.ProposeContractRequestSchema; } });
|
|
64
|
+
Object.defineProperty(exports, "AcceptContractRequestSchema", { enumerable: true, get: function () { return validation_js_1.AcceptContractRequestSchema; } });
|
|
65
|
+
Object.defineProperty(exports, "CompleteContractRequestSchema", { enumerable: true, get: function () { return validation_js_1.CompleteContractRequestSchema; } });
|
|
66
|
+
// Helpers
|
|
67
|
+
Object.defineProperty(exports, "validate", { enumerable: true, get: function () { return validation_js_1.validate; } });
|
|
68
|
+
Object.defineProperty(exports, "validatePrivateKey", { enumerable: true, get: function () { return validation_js_1.validatePrivateKey; } });
|
|
69
|
+
Object.defineProperty(exports, "validatePublicKey", { enumerable: true, get: function () { return validation_js_1.validatePublicKey; } });
|
|
70
|
+
Object.defineProperty(exports, "validateAddress", { enumerable: true, get: function () { return validation_js_1.validateAddress; } });
|
|
71
|
+
Object.defineProperty(exports, "validateKeyPair", { enumerable: true, get: function () { return validation_js_1.validateKeyPair; } });
|
|
72
|
+
Object.defineProperty(exports, "safeParse", { enumerable: true, get: function () { return validation_js_1.safeParse; } });
|
|
73
|
+
Object.defineProperty(exports, "assert", { enumerable: true, get: function () { return validation_js_1.assert; } });
|
|
74
|
+
// Error classes
|
|
75
|
+
__exportStar(require("./errors.js"), exports);
|
|
76
|
+
// Validation schemas and helpers
|
|
77
|
+
__exportStar(require("./validation.js"), exports);
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Binary Encoding
|
|
3
|
+
*
|
|
4
|
+
* Converts JSON data to binary format for cryptographic operations.
|
|
5
|
+
* Supports both regular encoding and DataUpdate encoding with Constellation prefix.
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* Convert data to binary bytes for signing
|
|
9
|
+
*
|
|
10
|
+
* For regular data:
|
|
11
|
+
* JSON -> RFC 8785 canonicalization -> UTF-8 bytes
|
|
12
|
+
*
|
|
13
|
+
* For DataUpdate (isDataUpdate=true):
|
|
14
|
+
* JSON -> RFC 8785 -> UTF-8 -> Base64 -> prepend Constellation prefix -> UTF-8 bytes
|
|
15
|
+
*
|
|
16
|
+
* @param data - Any JSON-serializable object
|
|
17
|
+
* @param isDataUpdate - If true, applies DataUpdate encoding with Constellation prefix
|
|
18
|
+
* @returns Binary bytes as Uint8Array
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* ```typescript
|
|
22
|
+
* // Regular encoding
|
|
23
|
+
* const bytes = toBytes({ action: 'test' });
|
|
24
|
+
*
|
|
25
|
+
* // DataUpdate encoding
|
|
26
|
+
* const updateBytes = toBytes({ action: 'test' }, true);
|
|
27
|
+
* ```
|
|
28
|
+
*/
|
|
29
|
+
export declare function toBytes<T>(data: T, isDataUpdate?: boolean): Uint8Array;
|
|
30
|
+
/**
|
|
31
|
+
* Encode data as a DataUpdate with Constellation prefix
|
|
32
|
+
*
|
|
33
|
+
* This is equivalent to `toBytes(data, true)`.
|
|
34
|
+
*
|
|
35
|
+
* @param data - Any JSON-serializable object
|
|
36
|
+
* @returns Binary bytes with Constellation prefix
|
|
37
|
+
*/
|
|
38
|
+
export declare function encodeDataUpdate<T>(data: T): Uint8Array;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Binary Encoding
|
|
4
|
+
*
|
|
5
|
+
* Converts JSON data to binary format for cryptographic operations.
|
|
6
|
+
* Supports both regular encoding and DataUpdate encoding with Constellation prefix.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.encodeDataUpdate = exports.toBytes = void 0;
|
|
10
|
+
const canonicalize_js_1 = require("./canonicalize.js");
|
|
11
|
+
const types_js_1 = require("./types.js");
|
|
12
|
+
/**
|
|
13
|
+
* Convert data to binary bytes for signing
|
|
14
|
+
*
|
|
15
|
+
* For regular data:
|
|
16
|
+
* JSON -> RFC 8785 canonicalization -> UTF-8 bytes
|
|
17
|
+
*
|
|
18
|
+
* For DataUpdate (isDataUpdate=true):
|
|
19
|
+
* JSON -> RFC 8785 -> UTF-8 -> Base64 -> prepend Constellation prefix -> UTF-8 bytes
|
|
20
|
+
*
|
|
21
|
+
* @param data - Any JSON-serializable object
|
|
22
|
+
* @param isDataUpdate - If true, applies DataUpdate encoding with Constellation prefix
|
|
23
|
+
* @returns Binary bytes as Uint8Array
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* ```typescript
|
|
27
|
+
* // Regular encoding
|
|
28
|
+
* const bytes = toBytes({ action: 'test' });
|
|
29
|
+
*
|
|
30
|
+
* // DataUpdate encoding
|
|
31
|
+
* const updateBytes = toBytes({ action: 'test' }, true);
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
34
|
+
function toBytes(data, isDataUpdate = false) {
|
|
35
|
+
const canonicalJson = (0, canonicalize_js_1.canonicalize)(data);
|
|
36
|
+
const utf8Bytes = new TextEncoder().encode(canonicalJson);
|
|
37
|
+
if (isDataUpdate) {
|
|
38
|
+
// Base64 encode the UTF-8 bytes
|
|
39
|
+
const base64String = Buffer.from(utf8Bytes).toString('base64');
|
|
40
|
+
// Create the wrapped string with Constellation prefix
|
|
41
|
+
const wrappedString = `${types_js_1.CONSTELLATION_PREFIX}${base64String.length}\n${base64String}`;
|
|
42
|
+
return new TextEncoder().encode(wrappedString);
|
|
43
|
+
}
|
|
44
|
+
return utf8Bytes;
|
|
45
|
+
}
|
|
46
|
+
exports.toBytes = toBytes;
|
|
47
|
+
/**
|
|
48
|
+
* Encode data as a DataUpdate with Constellation prefix
|
|
49
|
+
*
|
|
50
|
+
* This is equivalent to `toBytes(data, true)`.
|
|
51
|
+
*
|
|
52
|
+
* @param data - Any JSON-serializable object
|
|
53
|
+
* @returns Binary bytes with Constellation prefix
|
|
54
|
+
*/
|
|
55
|
+
function encodeDataUpdate(data) {
|
|
56
|
+
return toBytes(data, true);
|
|
57
|
+
}
|
|
58
|
+
exports.encodeDataUpdate = encodeDataUpdate;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* RFC 8785 JSON Canonicalization
|
|
3
|
+
*
|
|
4
|
+
* Provides deterministic JSON serialization according to RFC 8785.
|
|
5
|
+
* This ensures identical JSON objects always produce identical strings.
|
|
6
|
+
*/
|
|
7
|
+
/**
|
|
8
|
+
* Canonicalize JSON data according to RFC 8785
|
|
9
|
+
*
|
|
10
|
+
* Key features:
|
|
11
|
+
* - Object keys sorted by UTF-16BE binary comparison
|
|
12
|
+
* - Numbers serialized in shortest decimal representation
|
|
13
|
+
* - No whitespace
|
|
14
|
+
* - Proper Unicode escaping
|
|
15
|
+
*
|
|
16
|
+
* @param data - Any JSON-serializable object
|
|
17
|
+
* @returns Canonical JSON string
|
|
18
|
+
* @throws Error if data cannot be serialized to JSON
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* ```typescript
|
|
22
|
+
* const canonical = canonicalize({ b: 2, a: 1 });
|
|
23
|
+
* // Returns: '{"a":1,"b":2}'
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
export declare function canonicalize<T>(data: T): string;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* RFC 8785 JSON Canonicalization
|
|
4
|
+
*
|
|
5
|
+
* Provides deterministic JSON serialization according to RFC 8785.
|
|
6
|
+
* This ensures identical JSON objects always produce identical strings.
|
|
7
|
+
*/
|
|
8
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
9
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.canonicalize = void 0;
|
|
13
|
+
const canonicalize_1 = __importDefault(require("canonicalize"));
|
|
14
|
+
/**
|
|
15
|
+
* Canonicalize JSON data according to RFC 8785
|
|
16
|
+
*
|
|
17
|
+
* Key features:
|
|
18
|
+
* - Object keys sorted by UTF-16BE binary comparison
|
|
19
|
+
* - Numbers serialized in shortest decimal representation
|
|
20
|
+
* - No whitespace
|
|
21
|
+
* - Proper Unicode escaping
|
|
22
|
+
*
|
|
23
|
+
* @param data - Any JSON-serializable object
|
|
24
|
+
* @returns Canonical JSON string
|
|
25
|
+
* @throws Error if data cannot be serialized to JSON
|
|
26
|
+
*
|
|
27
|
+
* @example
|
|
28
|
+
* ```typescript
|
|
29
|
+
* const canonical = canonicalize({ b: 2, a: 1 });
|
|
30
|
+
* // Returns: '{"a":1,"b":2}'
|
|
31
|
+
* ```
|
|
32
|
+
*/
|
|
33
|
+
function canonicalize(data) {
|
|
34
|
+
const result = (0, canonicalize_1.default)(data);
|
|
35
|
+
if (result === undefined) {
|
|
36
|
+
throw new Error('Failed to canonicalize data: data cannot be serialized to JSON');
|
|
37
|
+
}
|
|
38
|
+
return result;
|
|
39
|
+
}
|
|
40
|
+
exports.canonicalize = canonicalize;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Codec Utilities
|
|
3
|
+
*
|
|
4
|
+
* Encoding/decoding utilities for the Constellation signature protocol.
|
|
5
|
+
* Re-exports from binary.ts for backwards compatibility and provides additional utilities.
|
|
6
|
+
*/
|
|
7
|
+
export { toBytes, encodeDataUpdate } from './binary.js';
|
|
8
|
+
export { CONSTELLATION_PREFIX } from './types.js';
|
|
9
|
+
/**
|
|
10
|
+
* Decode a DataUpdate encoded message back to its original JSON
|
|
11
|
+
*
|
|
12
|
+
* @param bytes - DataUpdate encoded bytes
|
|
13
|
+
* @returns Decoded JSON object
|
|
14
|
+
* @throws Error if bytes are not valid DataUpdate encoding
|
|
15
|
+
*/
|
|
16
|
+
export declare function decodeDataUpdate<T>(bytes: Uint8Array): T;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Codec Utilities
|
|
4
|
+
*
|
|
5
|
+
* Encoding/decoding utilities for the Constellation signature protocol.
|
|
6
|
+
* Re-exports from binary.ts for backwards compatibility and provides additional utilities.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.decodeDataUpdate = exports.CONSTELLATION_PREFIX = exports.encodeDataUpdate = exports.toBytes = void 0;
|
|
10
|
+
var binary_js_1 = require("./binary.js");
|
|
11
|
+
Object.defineProperty(exports, "toBytes", { enumerable: true, get: function () { return binary_js_1.toBytes; } });
|
|
12
|
+
Object.defineProperty(exports, "encodeDataUpdate", { enumerable: true, get: function () { return binary_js_1.encodeDataUpdate; } });
|
|
13
|
+
var types_js_1 = require("./types.js");
|
|
14
|
+
Object.defineProperty(exports, "CONSTELLATION_PREFIX", { enumerable: true, get: function () { return types_js_1.CONSTELLATION_PREFIX; } });
|
|
15
|
+
/**
|
|
16
|
+
* Decode a DataUpdate encoded message back to its original JSON
|
|
17
|
+
*
|
|
18
|
+
* @param bytes - DataUpdate encoded bytes
|
|
19
|
+
* @returns Decoded JSON object
|
|
20
|
+
* @throws Error if bytes are not valid DataUpdate encoding
|
|
21
|
+
*/
|
|
22
|
+
function decodeDataUpdate(bytes) {
|
|
23
|
+
const text = new TextDecoder().decode(bytes);
|
|
24
|
+
// Validate prefix
|
|
25
|
+
if (!text.startsWith('\x19Constellation Signed Data:\n')) {
|
|
26
|
+
throw new Error('Invalid DataUpdate encoding: missing Constellation prefix');
|
|
27
|
+
}
|
|
28
|
+
// Parse the format: \x19Constellation Signed Data:\n{length}\n{base64}
|
|
29
|
+
const withoutPrefix = text.slice('\x19Constellation Signed Data:\n'.length);
|
|
30
|
+
const newlineIndex = withoutPrefix.indexOf('\n');
|
|
31
|
+
if (newlineIndex === -1) {
|
|
32
|
+
throw new Error('Invalid DataUpdate encoding: missing length delimiter');
|
|
33
|
+
}
|
|
34
|
+
const lengthStr = withoutPrefix.slice(0, newlineIndex);
|
|
35
|
+
const base64Data = withoutPrefix.slice(newlineIndex + 1);
|
|
36
|
+
const expectedLength = parseInt(lengthStr, 10);
|
|
37
|
+
if (isNaN(expectedLength) || base64Data.length !== expectedLength) {
|
|
38
|
+
throw new Error('Invalid DataUpdate encoding: length mismatch');
|
|
39
|
+
}
|
|
40
|
+
// Decode base64 to UTF-8 JSON
|
|
41
|
+
const jsonBytes = Buffer.from(base64Data, 'base64');
|
|
42
|
+
const jsonString = new TextDecoder().decode(jsonBytes);
|
|
43
|
+
return JSON.parse(jsonString);
|
|
44
|
+
}
|
|
45
|
+
exports.decodeDataUpdate = decodeDataUpdate;
|