@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,1172 @@
|
|
|
1
|
+
import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { Address as Address$1 } from "../../../v1/common_pb.js";
|
|
3
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
4
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
5
|
+
/**
|
|
6
|
+
* Describes the file ottochain/apps/corporate/v1/corporate.proto.
|
|
7
|
+
*/
|
|
8
|
+
export declare const file_ottochain_apps_corporate_v1_corporate: GenFile;
|
|
9
|
+
/**
|
|
10
|
+
* Jurisdiction information
|
|
11
|
+
*
|
|
12
|
+
* @generated from message ottochain.apps.corporate.v1.Jurisdiction
|
|
13
|
+
*/
|
|
14
|
+
export type Jurisdiction = Message<"ottochain.apps.corporate.v1.Jurisdiction"> & {
|
|
15
|
+
/**
|
|
16
|
+
* State/province of incorporation
|
|
17
|
+
*
|
|
18
|
+
* @generated from field: string state = 1;
|
|
19
|
+
*/
|
|
20
|
+
state: string;
|
|
21
|
+
/**
|
|
22
|
+
* Country code (ISO 3166-1)
|
|
23
|
+
*
|
|
24
|
+
* @generated from field: string country = 2;
|
|
25
|
+
*/
|
|
26
|
+
country: string;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Describes the message ottochain.apps.corporate.v1.Jurisdiction.
|
|
30
|
+
* Use `create(JurisdictionSchema)` to create a new message.
|
|
31
|
+
*/
|
|
32
|
+
export declare const JurisdictionSchema: GenMessage<Jurisdiction>;
|
|
33
|
+
/**
|
|
34
|
+
* Physical or mailing address
|
|
35
|
+
*
|
|
36
|
+
* @generated from message ottochain.apps.corporate.v1.Address
|
|
37
|
+
*/
|
|
38
|
+
export type Address = Message<"ottochain.apps.corporate.v1.Address"> & {
|
|
39
|
+
/**
|
|
40
|
+
* @generated from field: string street1 = 1;
|
|
41
|
+
*/
|
|
42
|
+
street1: string;
|
|
43
|
+
/**
|
|
44
|
+
* @generated from field: string street2 = 2;
|
|
45
|
+
*/
|
|
46
|
+
street2: string;
|
|
47
|
+
/**
|
|
48
|
+
* @generated from field: string city = 3;
|
|
49
|
+
*/
|
|
50
|
+
city: string;
|
|
51
|
+
/**
|
|
52
|
+
* @generated from field: string state = 4;
|
|
53
|
+
*/
|
|
54
|
+
state: string;
|
|
55
|
+
/**
|
|
56
|
+
* @generated from field: string postal_code = 5;
|
|
57
|
+
*/
|
|
58
|
+
postalCode: string;
|
|
59
|
+
/**
|
|
60
|
+
* @generated from field: string country = 6;
|
|
61
|
+
*/
|
|
62
|
+
country: string;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* Describes the message ottochain.apps.corporate.v1.Address.
|
|
66
|
+
* Use `create(AddressSchema)` to create a new message.
|
|
67
|
+
*/
|
|
68
|
+
export declare const AddressSchema: GenMessage<Address>;
|
|
69
|
+
/**
|
|
70
|
+
* Share class definition
|
|
71
|
+
*
|
|
72
|
+
* @generated from message ottochain.apps.corporate.v1.ShareClass
|
|
73
|
+
*/
|
|
74
|
+
export type ShareClass = Message<"ottochain.apps.corporate.v1.ShareClass"> & {
|
|
75
|
+
/**
|
|
76
|
+
* @generated from field: string class_id = 1;
|
|
77
|
+
*/
|
|
78
|
+
classId: string;
|
|
79
|
+
/**
|
|
80
|
+
* @generated from field: string class_name = 2;
|
|
81
|
+
*/
|
|
82
|
+
className: string;
|
|
83
|
+
/**
|
|
84
|
+
* @generated from field: int64 authorized = 3;
|
|
85
|
+
*/
|
|
86
|
+
authorized: bigint;
|
|
87
|
+
/**
|
|
88
|
+
* @generated from field: int64 issued = 4;
|
|
89
|
+
*/
|
|
90
|
+
issued: bigint;
|
|
91
|
+
/**
|
|
92
|
+
* @generated from field: int64 outstanding = 5;
|
|
93
|
+
*/
|
|
94
|
+
outstanding: bigint;
|
|
95
|
+
/**
|
|
96
|
+
* @generated from field: int64 par_value_cents = 6;
|
|
97
|
+
*/
|
|
98
|
+
parValueCents: bigint;
|
|
99
|
+
/**
|
|
100
|
+
* @generated from field: bool voting_rights = 7;
|
|
101
|
+
*/
|
|
102
|
+
votingRights: boolean;
|
|
103
|
+
/**
|
|
104
|
+
* @generated from field: int32 votes_per_share = 8;
|
|
105
|
+
*/
|
|
106
|
+
votesPerShare: number;
|
|
107
|
+
/**
|
|
108
|
+
* Multiple, e.g., 1 = 1x
|
|
109
|
+
*
|
|
110
|
+
* @generated from field: int32 liquidation_preference = 9;
|
|
111
|
+
*/
|
|
112
|
+
liquidationPreference: number;
|
|
113
|
+
};
|
|
114
|
+
/**
|
|
115
|
+
* Describes the message ottochain.apps.corporate.v1.ShareClass.
|
|
116
|
+
* Use `create(ShareClassSchema)` to create a new message.
|
|
117
|
+
*/
|
|
118
|
+
export declare const ShareClassSchema: GenMessage<ShareClass>;
|
|
119
|
+
/**
|
|
120
|
+
* @generated from message ottochain.apps.corporate.v1.CorporateEntity
|
|
121
|
+
*/
|
|
122
|
+
export type CorporateEntity = Message<"ottochain.apps.corporate.v1.CorporateEntity"> & {
|
|
123
|
+
/**
|
|
124
|
+
* @generated from field: string entity_id = 1;
|
|
125
|
+
*/
|
|
126
|
+
entityId: string;
|
|
127
|
+
/**
|
|
128
|
+
* @generated from field: string legal_name = 2;
|
|
129
|
+
*/
|
|
130
|
+
legalName: string;
|
|
131
|
+
/**
|
|
132
|
+
* @generated from field: ottochain.apps.corporate.v1.EntityType entity_type = 3;
|
|
133
|
+
*/
|
|
134
|
+
entityType: EntityType;
|
|
135
|
+
/**
|
|
136
|
+
* @generated from field: ottochain.apps.corporate.v1.Jurisdiction jurisdiction = 4;
|
|
137
|
+
*/
|
|
138
|
+
jurisdiction?: Jurisdiction;
|
|
139
|
+
/**
|
|
140
|
+
* @generated from field: google.protobuf.Timestamp formation_date = 5;
|
|
141
|
+
*/
|
|
142
|
+
formationDate?: Timestamp;
|
|
143
|
+
/**
|
|
144
|
+
* @generated from field: ottochain.apps.corporate.v1.RegisteredAgent registered_agent = 6;
|
|
145
|
+
*/
|
|
146
|
+
registeredAgent?: RegisteredAgent;
|
|
147
|
+
/**
|
|
148
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.Incorporator incorporators = 7;
|
|
149
|
+
*/
|
|
150
|
+
incorporators: Incorporator[];
|
|
151
|
+
/**
|
|
152
|
+
* @generated from field: ottochain.apps.corporate.v1.ShareStructure share_structure = 8;
|
|
153
|
+
*/
|
|
154
|
+
shareStructure?: ShareStructure;
|
|
155
|
+
/**
|
|
156
|
+
* @generated from field: ottochain.apps.corporate.v1.EntityState status = 9;
|
|
157
|
+
*/
|
|
158
|
+
status: EntityState;
|
|
159
|
+
/**
|
|
160
|
+
* @generated from field: google.protobuf.Timestamp created_at = 10;
|
|
161
|
+
*/
|
|
162
|
+
createdAt?: Timestamp;
|
|
163
|
+
};
|
|
164
|
+
/**
|
|
165
|
+
* Describes the message ottochain.apps.corporate.v1.CorporateEntity.
|
|
166
|
+
* Use `create(CorporateEntitySchema)` to create a new message.
|
|
167
|
+
*/
|
|
168
|
+
export declare const CorporateEntitySchema: GenMessage<CorporateEntity>;
|
|
169
|
+
/**
|
|
170
|
+
* @generated from message ottochain.apps.corporate.v1.RegisteredAgent
|
|
171
|
+
*/
|
|
172
|
+
export type RegisteredAgent = Message<"ottochain.apps.corporate.v1.RegisteredAgent"> & {
|
|
173
|
+
/**
|
|
174
|
+
* @generated from field: string name = 1;
|
|
175
|
+
*/
|
|
176
|
+
name: string;
|
|
177
|
+
/**
|
|
178
|
+
* @generated from field: ottochain.apps.corporate.v1.Address address = 2;
|
|
179
|
+
*/
|
|
180
|
+
address?: Address;
|
|
181
|
+
};
|
|
182
|
+
/**
|
|
183
|
+
* Describes the message ottochain.apps.corporate.v1.RegisteredAgent.
|
|
184
|
+
* Use `create(RegisteredAgentSchema)` to create a new message.
|
|
185
|
+
*/
|
|
186
|
+
export declare const RegisteredAgentSchema: GenMessage<RegisteredAgent>;
|
|
187
|
+
/**
|
|
188
|
+
* @generated from message ottochain.apps.corporate.v1.Incorporator
|
|
189
|
+
*/
|
|
190
|
+
export type Incorporator = Message<"ottochain.apps.corporate.v1.Incorporator"> & {
|
|
191
|
+
/**
|
|
192
|
+
* @generated from field: string name = 1;
|
|
193
|
+
*/
|
|
194
|
+
name: string;
|
|
195
|
+
/**
|
|
196
|
+
* @generated from field: ottochain.v1.Address address = 2;
|
|
197
|
+
*/
|
|
198
|
+
address?: Address$1;
|
|
199
|
+
};
|
|
200
|
+
/**
|
|
201
|
+
* Describes the message ottochain.apps.corporate.v1.Incorporator.
|
|
202
|
+
* Use `create(IncorporatorSchema)` to create a new message.
|
|
203
|
+
*/
|
|
204
|
+
export declare const IncorporatorSchema: GenMessage<Incorporator>;
|
|
205
|
+
/**
|
|
206
|
+
* @generated from message ottochain.apps.corporate.v1.ShareStructure
|
|
207
|
+
*/
|
|
208
|
+
export type ShareStructure = Message<"ottochain.apps.corporate.v1.ShareStructure"> & {
|
|
209
|
+
/**
|
|
210
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.ShareClass classes = 1;
|
|
211
|
+
*/
|
|
212
|
+
classes: ShareClass[];
|
|
213
|
+
/**
|
|
214
|
+
* @generated from field: int64 total_authorized = 2;
|
|
215
|
+
*/
|
|
216
|
+
totalAuthorized: bigint;
|
|
217
|
+
/**
|
|
218
|
+
* @generated from field: int64 total_issued = 3;
|
|
219
|
+
*/
|
|
220
|
+
totalIssued: bigint;
|
|
221
|
+
/**
|
|
222
|
+
* @generated from field: int64 total_outstanding = 4;
|
|
223
|
+
*/
|
|
224
|
+
totalOutstanding: bigint;
|
|
225
|
+
};
|
|
226
|
+
/**
|
|
227
|
+
* Describes the message ottochain.apps.corporate.v1.ShareStructure.
|
|
228
|
+
* Use `create(ShareStructureSchema)` to create a new message.
|
|
229
|
+
*/
|
|
230
|
+
export declare const ShareStructureSchema: GenMessage<ShareStructure>;
|
|
231
|
+
/**
|
|
232
|
+
* @generated from message ottochain.apps.corporate.v1.CorporateBoard
|
|
233
|
+
*/
|
|
234
|
+
export type CorporateBoard = Message<"ottochain.apps.corporate.v1.CorporateBoard"> & {
|
|
235
|
+
/**
|
|
236
|
+
* @generated from field: string board_id = 1;
|
|
237
|
+
*/
|
|
238
|
+
boardId: string;
|
|
239
|
+
/**
|
|
240
|
+
* @generated from field: string entity_id = 2;
|
|
241
|
+
*/
|
|
242
|
+
entityId: string;
|
|
243
|
+
/**
|
|
244
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.Director directors = 3;
|
|
245
|
+
*/
|
|
246
|
+
directors: Director[];
|
|
247
|
+
/**
|
|
248
|
+
* @generated from field: ottochain.apps.corporate.v1.SeatInfo seats = 4;
|
|
249
|
+
*/
|
|
250
|
+
seats?: SeatInfo;
|
|
251
|
+
/**
|
|
252
|
+
* @generated from field: ottochain.apps.corporate.v1.QuorumRules quorum_rules = 5;
|
|
253
|
+
*/
|
|
254
|
+
quorumRules?: QuorumRules;
|
|
255
|
+
/**
|
|
256
|
+
* @generated from field: ottochain.apps.corporate.v1.BoardMeeting current_meeting = 6;
|
|
257
|
+
*/
|
|
258
|
+
currentMeeting?: BoardMeeting;
|
|
259
|
+
/**
|
|
260
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.BoardMeeting meeting_history = 7;
|
|
261
|
+
*/
|
|
262
|
+
meetingHistory: BoardMeeting[];
|
|
263
|
+
};
|
|
264
|
+
/**
|
|
265
|
+
* Describes the message ottochain.apps.corporate.v1.CorporateBoard.
|
|
266
|
+
* Use `create(CorporateBoardSchema)` to create a new message.
|
|
267
|
+
*/
|
|
268
|
+
export declare const CorporateBoardSchema: GenMessage<CorporateBoard>;
|
|
269
|
+
/**
|
|
270
|
+
* @generated from message ottochain.apps.corporate.v1.Director
|
|
271
|
+
*/
|
|
272
|
+
export type Director = Message<"ottochain.apps.corporate.v1.Director"> & {
|
|
273
|
+
/**
|
|
274
|
+
* @generated from field: string director_id = 1;
|
|
275
|
+
*/
|
|
276
|
+
directorId: string;
|
|
277
|
+
/**
|
|
278
|
+
* @generated from field: string name = 2;
|
|
279
|
+
*/
|
|
280
|
+
name: string;
|
|
281
|
+
/**
|
|
282
|
+
* @generated from field: string email = 3;
|
|
283
|
+
*/
|
|
284
|
+
email: string;
|
|
285
|
+
/**
|
|
286
|
+
* @generated from field: google.protobuf.Timestamp term_start = 4;
|
|
287
|
+
*/
|
|
288
|
+
termStart?: Timestamp;
|
|
289
|
+
/**
|
|
290
|
+
* @generated from field: google.protobuf.Timestamp term_end = 5;
|
|
291
|
+
*/
|
|
292
|
+
termEnd?: Timestamp;
|
|
293
|
+
/**
|
|
294
|
+
* @generated from field: ottochain.apps.corporate.v1.DirectorStatus status = 6;
|
|
295
|
+
*/
|
|
296
|
+
status: DirectorStatus;
|
|
297
|
+
/**
|
|
298
|
+
* @generated from field: bool is_independent = 7;
|
|
299
|
+
*/
|
|
300
|
+
isIndependent: boolean;
|
|
301
|
+
/**
|
|
302
|
+
* @generated from field: bool is_chair = 8;
|
|
303
|
+
*/
|
|
304
|
+
isChair: boolean;
|
|
305
|
+
};
|
|
306
|
+
/**
|
|
307
|
+
* Describes the message ottochain.apps.corporate.v1.Director.
|
|
308
|
+
* Use `create(DirectorSchema)` to create a new message.
|
|
309
|
+
*/
|
|
310
|
+
export declare const DirectorSchema: GenMessage<Director>;
|
|
311
|
+
/**
|
|
312
|
+
* @generated from message ottochain.apps.corporate.v1.SeatInfo
|
|
313
|
+
*/
|
|
314
|
+
export type SeatInfo = Message<"ottochain.apps.corporate.v1.SeatInfo"> & {
|
|
315
|
+
/**
|
|
316
|
+
* @generated from field: int32 authorized = 1;
|
|
317
|
+
*/
|
|
318
|
+
authorized: number;
|
|
319
|
+
/**
|
|
320
|
+
* @generated from field: int32 filled = 2;
|
|
321
|
+
*/
|
|
322
|
+
filled: number;
|
|
323
|
+
/**
|
|
324
|
+
* @generated from field: int32 vacant = 3;
|
|
325
|
+
*/
|
|
326
|
+
vacant: number;
|
|
327
|
+
};
|
|
328
|
+
/**
|
|
329
|
+
* Describes the message ottochain.apps.corporate.v1.SeatInfo.
|
|
330
|
+
* Use `create(SeatInfoSchema)` to create a new message.
|
|
331
|
+
*/
|
|
332
|
+
export declare const SeatInfoSchema: GenMessage<SeatInfo>;
|
|
333
|
+
/**
|
|
334
|
+
* @generated from message ottochain.apps.corporate.v1.QuorumRules
|
|
335
|
+
*/
|
|
336
|
+
export type QuorumRules = Message<"ottochain.apps.corporate.v1.QuorumRules"> & {
|
|
337
|
+
/**
|
|
338
|
+
* MAJORITY, SUPERMAJORITY, FIXED_NUMBER
|
|
339
|
+
*
|
|
340
|
+
* @generated from field: string type = 1;
|
|
341
|
+
*/
|
|
342
|
+
type: string;
|
|
343
|
+
/**
|
|
344
|
+
* @generated from field: int32 threshold = 2;
|
|
345
|
+
*/
|
|
346
|
+
threshold: number;
|
|
347
|
+
};
|
|
348
|
+
/**
|
|
349
|
+
* Describes the message ottochain.apps.corporate.v1.QuorumRules.
|
|
350
|
+
* Use `create(QuorumRulesSchema)` to create a new message.
|
|
351
|
+
*/
|
|
352
|
+
export declare const QuorumRulesSchema: GenMessage<QuorumRules>;
|
|
353
|
+
/**
|
|
354
|
+
* @generated from message ottochain.apps.corporate.v1.BoardMeeting
|
|
355
|
+
*/
|
|
356
|
+
export type BoardMeeting = Message<"ottochain.apps.corporate.v1.BoardMeeting"> & {
|
|
357
|
+
/**
|
|
358
|
+
* @generated from field: string meeting_id = 1;
|
|
359
|
+
*/
|
|
360
|
+
meetingId: string;
|
|
361
|
+
/**
|
|
362
|
+
* @generated from field: ottochain.apps.corporate.v1.BoardMeetingType type = 2;
|
|
363
|
+
*/
|
|
364
|
+
type: BoardMeetingType;
|
|
365
|
+
/**
|
|
366
|
+
* @generated from field: google.protobuf.Timestamp scheduled_date = 3;
|
|
367
|
+
*/
|
|
368
|
+
scheduledDate?: Timestamp;
|
|
369
|
+
/**
|
|
370
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.MeetingAttendee attendees = 4;
|
|
371
|
+
*/
|
|
372
|
+
attendees: MeetingAttendee[];
|
|
373
|
+
/**
|
|
374
|
+
* @generated from field: bool quorum_present = 5;
|
|
375
|
+
*/
|
|
376
|
+
quorumPresent: boolean;
|
|
377
|
+
};
|
|
378
|
+
/**
|
|
379
|
+
* Describes the message ottochain.apps.corporate.v1.BoardMeeting.
|
|
380
|
+
* Use `create(BoardMeetingSchema)` to create a new message.
|
|
381
|
+
*/
|
|
382
|
+
export declare const BoardMeetingSchema: GenMessage<BoardMeeting>;
|
|
383
|
+
/**
|
|
384
|
+
* @generated from message ottochain.apps.corporate.v1.MeetingAttendee
|
|
385
|
+
*/
|
|
386
|
+
export type MeetingAttendee = Message<"ottochain.apps.corporate.v1.MeetingAttendee"> & {
|
|
387
|
+
/**
|
|
388
|
+
* @generated from field: string director_id = 1;
|
|
389
|
+
*/
|
|
390
|
+
directorId: string;
|
|
391
|
+
/**
|
|
392
|
+
* @generated from field: bool present = 2;
|
|
393
|
+
*/
|
|
394
|
+
present: boolean;
|
|
395
|
+
};
|
|
396
|
+
/**
|
|
397
|
+
* Describes the message ottochain.apps.corporate.v1.MeetingAttendee.
|
|
398
|
+
* Use `create(MeetingAttendeeSchema)` to create a new message.
|
|
399
|
+
*/
|
|
400
|
+
export declare const MeetingAttendeeSchema: GenMessage<MeetingAttendee>;
|
|
401
|
+
/**
|
|
402
|
+
* @generated from message ottochain.apps.corporate.v1.CorporateOfficers
|
|
403
|
+
*/
|
|
404
|
+
export type CorporateOfficers = Message<"ottochain.apps.corporate.v1.CorporateOfficers"> & {
|
|
405
|
+
/**
|
|
406
|
+
* @generated from field: string entity_id = 1;
|
|
407
|
+
*/
|
|
408
|
+
entityId: string;
|
|
409
|
+
/**
|
|
410
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.Officer officers = 2;
|
|
411
|
+
*/
|
|
412
|
+
officers: Officer[];
|
|
413
|
+
/**
|
|
414
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.OfficerAction action_history = 3;
|
|
415
|
+
*/
|
|
416
|
+
actionHistory: OfficerAction[];
|
|
417
|
+
};
|
|
418
|
+
/**
|
|
419
|
+
* Describes the message ottochain.apps.corporate.v1.CorporateOfficers.
|
|
420
|
+
* Use `create(CorporateOfficersSchema)` to create a new message.
|
|
421
|
+
*/
|
|
422
|
+
export declare const CorporateOfficersSchema: GenMessage<CorporateOfficers>;
|
|
423
|
+
/**
|
|
424
|
+
* @generated from message ottochain.apps.corporate.v1.Officer
|
|
425
|
+
*/
|
|
426
|
+
export type Officer = Message<"ottochain.apps.corporate.v1.Officer"> & {
|
|
427
|
+
/**
|
|
428
|
+
* @generated from field: string officer_id = 1;
|
|
429
|
+
*/
|
|
430
|
+
officerId: string;
|
|
431
|
+
/**
|
|
432
|
+
* @generated from field: string name = 2;
|
|
433
|
+
*/
|
|
434
|
+
name: string;
|
|
435
|
+
/**
|
|
436
|
+
* @generated from field: string title = 3;
|
|
437
|
+
*/
|
|
438
|
+
title: string;
|
|
439
|
+
/**
|
|
440
|
+
* @generated from field: string email = 4;
|
|
441
|
+
*/
|
|
442
|
+
email: string;
|
|
443
|
+
/**
|
|
444
|
+
* @generated from field: google.protobuf.Timestamp appointed_at = 5;
|
|
445
|
+
*/
|
|
446
|
+
appointedAt?: Timestamp;
|
|
447
|
+
/**
|
|
448
|
+
* @generated from field: ottochain.v1.Address appointed_by = 6;
|
|
449
|
+
*/
|
|
450
|
+
appointedBy?: Address$1;
|
|
451
|
+
/**
|
|
452
|
+
* @generated from field: ottochain.apps.corporate.v1.OfficerStatus status = 7;
|
|
453
|
+
*/
|
|
454
|
+
status: OfficerStatus;
|
|
455
|
+
};
|
|
456
|
+
/**
|
|
457
|
+
* Describes the message ottochain.apps.corporate.v1.Officer.
|
|
458
|
+
* Use `create(OfficerSchema)` to create a new message.
|
|
459
|
+
*/
|
|
460
|
+
export declare const OfficerSchema: GenMessage<Officer>;
|
|
461
|
+
/**
|
|
462
|
+
* @generated from message ottochain.apps.corporate.v1.OfficerAction
|
|
463
|
+
*/
|
|
464
|
+
export type OfficerAction = Message<"ottochain.apps.corporate.v1.OfficerAction"> & {
|
|
465
|
+
/**
|
|
466
|
+
* @generated from field: string action_type = 1;
|
|
467
|
+
*/
|
|
468
|
+
actionType: string;
|
|
469
|
+
/**
|
|
470
|
+
* @generated from field: string officer_id = 2;
|
|
471
|
+
*/
|
|
472
|
+
officerId: string;
|
|
473
|
+
/**
|
|
474
|
+
* @generated from field: google.protobuf.Timestamp at = 3;
|
|
475
|
+
*/
|
|
476
|
+
at?: Timestamp;
|
|
477
|
+
/**
|
|
478
|
+
* @generated from field: ottochain.v1.Address by = 4;
|
|
479
|
+
*/
|
|
480
|
+
by?: Address$1;
|
|
481
|
+
};
|
|
482
|
+
/**
|
|
483
|
+
* Describes the message ottochain.apps.corporate.v1.OfficerAction.
|
|
484
|
+
* Use `create(OfficerActionSchema)` to create a new message.
|
|
485
|
+
*/
|
|
486
|
+
export declare const OfficerActionSchema: GenMessage<OfficerAction>;
|
|
487
|
+
/**
|
|
488
|
+
* @generated from message ottochain.apps.corporate.v1.CorporateShareholders
|
|
489
|
+
*/
|
|
490
|
+
export type CorporateShareholders = Message<"ottochain.apps.corporate.v1.CorporateShareholders"> & {
|
|
491
|
+
/**
|
|
492
|
+
* @generated from field: string entity_id = 1;
|
|
493
|
+
*/
|
|
494
|
+
entityId: string;
|
|
495
|
+
/**
|
|
496
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.Shareholder shareholders = 2;
|
|
497
|
+
*/
|
|
498
|
+
shareholders: Shareholder[];
|
|
499
|
+
/**
|
|
500
|
+
* address -> total votes
|
|
501
|
+
*
|
|
502
|
+
* @generated from field: map<string, int64> voting_power = 3;
|
|
503
|
+
*/
|
|
504
|
+
votingPower: {
|
|
505
|
+
[key: string]: bigint;
|
|
506
|
+
};
|
|
507
|
+
/**
|
|
508
|
+
* @generated from field: int64 total_voting_power = 4;
|
|
509
|
+
*/
|
|
510
|
+
totalVotingPower: bigint;
|
|
511
|
+
};
|
|
512
|
+
/**
|
|
513
|
+
* Describes the message ottochain.apps.corporate.v1.CorporateShareholders.
|
|
514
|
+
* Use `create(CorporateShareholdersSchema)` to create a new message.
|
|
515
|
+
*/
|
|
516
|
+
export declare const CorporateShareholdersSchema: GenMessage<CorporateShareholders>;
|
|
517
|
+
/**
|
|
518
|
+
* @generated from message ottochain.apps.corporate.v1.Shareholder
|
|
519
|
+
*/
|
|
520
|
+
export type Shareholder = Message<"ottochain.apps.corporate.v1.Shareholder"> & {
|
|
521
|
+
/**
|
|
522
|
+
* @generated from field: ottochain.v1.Address address = 1;
|
|
523
|
+
*/
|
|
524
|
+
address?: Address$1;
|
|
525
|
+
/**
|
|
526
|
+
* @generated from field: string name = 2;
|
|
527
|
+
*/
|
|
528
|
+
name: string;
|
|
529
|
+
/**
|
|
530
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.ShareHolding holdings = 3;
|
|
531
|
+
*/
|
|
532
|
+
holdings: ShareHolding[];
|
|
533
|
+
/**
|
|
534
|
+
* @generated from field: google.protobuf.Timestamp first_acquired = 4;
|
|
535
|
+
*/
|
|
536
|
+
firstAcquired?: Timestamp;
|
|
537
|
+
};
|
|
538
|
+
/**
|
|
539
|
+
* Describes the message ottochain.apps.corporate.v1.Shareholder.
|
|
540
|
+
* Use `create(ShareholderSchema)` to create a new message.
|
|
541
|
+
*/
|
|
542
|
+
export declare const ShareholderSchema: GenMessage<Shareholder>;
|
|
543
|
+
/**
|
|
544
|
+
* @generated from message ottochain.apps.corporate.v1.ShareHolding
|
|
545
|
+
*/
|
|
546
|
+
export type ShareHolding = Message<"ottochain.apps.corporate.v1.ShareHolding"> & {
|
|
547
|
+
/**
|
|
548
|
+
* @generated from field: string class_id = 1;
|
|
549
|
+
*/
|
|
550
|
+
classId: string;
|
|
551
|
+
/**
|
|
552
|
+
* @generated from field: int64 shares = 2;
|
|
553
|
+
*/
|
|
554
|
+
shares: bigint;
|
|
555
|
+
/**
|
|
556
|
+
* @generated from field: google.protobuf.Timestamp acquired_at = 3;
|
|
557
|
+
*/
|
|
558
|
+
acquiredAt?: Timestamp;
|
|
559
|
+
};
|
|
560
|
+
/**
|
|
561
|
+
* Describes the message ottochain.apps.corporate.v1.ShareHolding.
|
|
562
|
+
* Use `create(ShareHoldingSchema)` to create a new message.
|
|
563
|
+
*/
|
|
564
|
+
export declare const ShareHoldingSchema: GenMessage<ShareHolding>;
|
|
565
|
+
/**
|
|
566
|
+
* @generated from message ottochain.apps.corporate.v1.CorporateResolution
|
|
567
|
+
*/
|
|
568
|
+
export type CorporateResolution = Message<"ottochain.apps.corporate.v1.CorporateResolution"> & {
|
|
569
|
+
/**
|
|
570
|
+
* @generated from field: string resolution_id = 1;
|
|
571
|
+
*/
|
|
572
|
+
resolutionId: string;
|
|
573
|
+
/**
|
|
574
|
+
* @generated from field: string entity_id = 2;
|
|
575
|
+
*/
|
|
576
|
+
entityId: string;
|
|
577
|
+
/**
|
|
578
|
+
* @generated from field: string title = 3;
|
|
579
|
+
*/
|
|
580
|
+
title: string;
|
|
581
|
+
/**
|
|
582
|
+
* @generated from field: string body = 4;
|
|
583
|
+
*/
|
|
584
|
+
body: string;
|
|
585
|
+
/**
|
|
586
|
+
* BOARD, SHAREHOLDER, UNANIMOUS_WRITTEN
|
|
587
|
+
*
|
|
588
|
+
* @generated from field: string resolution_type = 5;
|
|
589
|
+
*/
|
|
590
|
+
resolutionType: string;
|
|
591
|
+
/**
|
|
592
|
+
* @generated from field: ottochain.apps.corporate.v1.ResolutionStatus status = 6;
|
|
593
|
+
*/
|
|
594
|
+
status: ResolutionStatus;
|
|
595
|
+
/**
|
|
596
|
+
* @generated from field: ottochain.v1.Address proposed_by = 7;
|
|
597
|
+
*/
|
|
598
|
+
proposedBy?: Address$1;
|
|
599
|
+
/**
|
|
600
|
+
* @generated from field: google.protobuf.Timestamp proposed_at = 8;
|
|
601
|
+
*/
|
|
602
|
+
proposedAt?: Timestamp;
|
|
603
|
+
/**
|
|
604
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.ResolutionVote votes = 9;
|
|
605
|
+
*/
|
|
606
|
+
votes: ResolutionVote[];
|
|
607
|
+
/**
|
|
608
|
+
* @generated from field: google.protobuf.Timestamp adopted_at = 10;
|
|
609
|
+
*/
|
|
610
|
+
adoptedAt?: Timestamp;
|
|
611
|
+
};
|
|
612
|
+
/**
|
|
613
|
+
* Describes the message ottochain.apps.corporate.v1.CorporateResolution.
|
|
614
|
+
* Use `create(CorporateResolutionSchema)` to create a new message.
|
|
615
|
+
*/
|
|
616
|
+
export declare const CorporateResolutionSchema: GenMessage<CorporateResolution>;
|
|
617
|
+
/**
|
|
618
|
+
* @generated from message ottochain.apps.corporate.v1.ResolutionVote
|
|
619
|
+
*/
|
|
620
|
+
export type ResolutionVote = Message<"ottochain.apps.corporate.v1.ResolutionVote"> & {
|
|
621
|
+
/**
|
|
622
|
+
* @generated from field: ottochain.v1.Address voter = 1;
|
|
623
|
+
*/
|
|
624
|
+
voter?: Address$1;
|
|
625
|
+
/**
|
|
626
|
+
* FOR, AGAINST, ABSTAIN
|
|
627
|
+
*
|
|
628
|
+
* @generated from field: string vote = 2;
|
|
629
|
+
*/
|
|
630
|
+
vote: string;
|
|
631
|
+
/**
|
|
632
|
+
* @generated from field: int64 weight = 3;
|
|
633
|
+
*/
|
|
634
|
+
weight: bigint;
|
|
635
|
+
/**
|
|
636
|
+
* @generated from field: google.protobuf.Timestamp voted_at = 4;
|
|
637
|
+
*/
|
|
638
|
+
votedAt?: Timestamp;
|
|
639
|
+
};
|
|
640
|
+
/**
|
|
641
|
+
* Describes the message ottochain.apps.corporate.v1.ResolutionVote.
|
|
642
|
+
* Use `create(ResolutionVoteSchema)` to create a new message.
|
|
643
|
+
*/
|
|
644
|
+
export declare const ResolutionVoteSchema: GenMessage<ResolutionVote>;
|
|
645
|
+
/**
|
|
646
|
+
* @generated from message ottochain.apps.corporate.v1.CorporateSecurities
|
|
647
|
+
*/
|
|
648
|
+
export type CorporateSecurities = Message<"ottochain.apps.corporate.v1.CorporateSecurities"> & {
|
|
649
|
+
/**
|
|
650
|
+
* @generated from field: string entity_id = 1;
|
|
651
|
+
*/
|
|
652
|
+
entityId: string;
|
|
653
|
+
/**
|
|
654
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.SecurityIssuance issuances = 2;
|
|
655
|
+
*/
|
|
656
|
+
issuances: SecurityIssuance[];
|
|
657
|
+
/**
|
|
658
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.SecurityTransfer transfers = 3;
|
|
659
|
+
*/
|
|
660
|
+
transfers: SecurityTransfer[];
|
|
661
|
+
};
|
|
662
|
+
/**
|
|
663
|
+
* Describes the message ottochain.apps.corporate.v1.CorporateSecurities.
|
|
664
|
+
* Use `create(CorporateSecuritiesSchema)` to create a new message.
|
|
665
|
+
*/
|
|
666
|
+
export declare const CorporateSecuritiesSchema: GenMessage<CorporateSecurities>;
|
|
667
|
+
/**
|
|
668
|
+
* @generated from message ottochain.apps.corporate.v1.SecurityIssuance
|
|
669
|
+
*/
|
|
670
|
+
export type SecurityIssuance = Message<"ottochain.apps.corporate.v1.SecurityIssuance"> & {
|
|
671
|
+
/**
|
|
672
|
+
* @generated from field: string issuance_id = 1;
|
|
673
|
+
*/
|
|
674
|
+
issuanceId: string;
|
|
675
|
+
/**
|
|
676
|
+
* @generated from field: string class_id = 2;
|
|
677
|
+
*/
|
|
678
|
+
classId: string;
|
|
679
|
+
/**
|
|
680
|
+
* @generated from field: ottochain.v1.Address recipient = 3;
|
|
681
|
+
*/
|
|
682
|
+
recipient?: Address$1;
|
|
683
|
+
/**
|
|
684
|
+
* @generated from field: int64 shares = 4;
|
|
685
|
+
*/
|
|
686
|
+
shares: bigint;
|
|
687
|
+
/**
|
|
688
|
+
* @generated from field: int64 price_per_share_cents = 5;
|
|
689
|
+
*/
|
|
690
|
+
pricePerShareCents: bigint;
|
|
691
|
+
/**
|
|
692
|
+
* @generated from field: google.protobuf.Timestamp issued_at = 6;
|
|
693
|
+
*/
|
|
694
|
+
issuedAt?: Timestamp;
|
|
695
|
+
/**
|
|
696
|
+
* @generated from field: string authorization_resolution_id = 7;
|
|
697
|
+
*/
|
|
698
|
+
authorizationResolutionId: string;
|
|
699
|
+
};
|
|
700
|
+
/**
|
|
701
|
+
* Describes the message ottochain.apps.corporate.v1.SecurityIssuance.
|
|
702
|
+
* Use `create(SecurityIssuanceSchema)` to create a new message.
|
|
703
|
+
*/
|
|
704
|
+
export declare const SecurityIssuanceSchema: GenMessage<SecurityIssuance>;
|
|
705
|
+
/**
|
|
706
|
+
* @generated from message ottochain.apps.corporate.v1.SecurityTransfer
|
|
707
|
+
*/
|
|
708
|
+
export type SecurityTransfer = Message<"ottochain.apps.corporate.v1.SecurityTransfer"> & {
|
|
709
|
+
/**
|
|
710
|
+
* @generated from field: string transfer_id = 1;
|
|
711
|
+
*/
|
|
712
|
+
transferId: string;
|
|
713
|
+
/**
|
|
714
|
+
* @generated from field: string class_id = 2;
|
|
715
|
+
*/
|
|
716
|
+
classId: string;
|
|
717
|
+
/**
|
|
718
|
+
* @generated from field: ottochain.v1.Address from = 3;
|
|
719
|
+
*/
|
|
720
|
+
from?: Address$1;
|
|
721
|
+
/**
|
|
722
|
+
* @generated from field: ottochain.v1.Address to = 4;
|
|
723
|
+
*/
|
|
724
|
+
to?: Address$1;
|
|
725
|
+
/**
|
|
726
|
+
* @generated from field: int64 shares = 5;
|
|
727
|
+
*/
|
|
728
|
+
shares: bigint;
|
|
729
|
+
/**
|
|
730
|
+
* @generated from field: google.protobuf.Timestamp transferred_at = 6;
|
|
731
|
+
*/
|
|
732
|
+
transferredAt?: Timestamp;
|
|
733
|
+
};
|
|
734
|
+
/**
|
|
735
|
+
* Describes the message ottochain.apps.corporate.v1.SecurityTransfer.
|
|
736
|
+
* Use `create(SecurityTransferSchema)` to create a new message.
|
|
737
|
+
*/
|
|
738
|
+
export declare const SecurityTransferSchema: GenMessage<SecurityTransfer>;
|
|
739
|
+
/**
|
|
740
|
+
* @generated from message ottochain.apps.corporate.v1.CorporateCompliance
|
|
741
|
+
*/
|
|
742
|
+
export type CorporateCompliance = Message<"ottochain.apps.corporate.v1.CorporateCompliance"> & {
|
|
743
|
+
/**
|
|
744
|
+
* @generated from field: string entity_id = 1;
|
|
745
|
+
*/
|
|
746
|
+
entityId: string;
|
|
747
|
+
/**
|
|
748
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.FilingRecord filings = 2;
|
|
749
|
+
*/
|
|
750
|
+
filings: FilingRecord[];
|
|
751
|
+
/**
|
|
752
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.ComplianceRequirement requirements = 3;
|
|
753
|
+
*/
|
|
754
|
+
requirements: ComplianceRequirement[];
|
|
755
|
+
/**
|
|
756
|
+
* @generated from field: bool in_good_standing = 4;
|
|
757
|
+
*/
|
|
758
|
+
inGoodStanding: boolean;
|
|
759
|
+
};
|
|
760
|
+
/**
|
|
761
|
+
* Describes the message ottochain.apps.corporate.v1.CorporateCompliance.
|
|
762
|
+
* Use `create(CorporateComplianceSchema)` to create a new message.
|
|
763
|
+
*/
|
|
764
|
+
export declare const CorporateComplianceSchema: GenMessage<CorporateCompliance>;
|
|
765
|
+
/**
|
|
766
|
+
* @generated from message ottochain.apps.corporate.v1.FilingRecord
|
|
767
|
+
*/
|
|
768
|
+
export type FilingRecord = Message<"ottochain.apps.corporate.v1.FilingRecord"> & {
|
|
769
|
+
/**
|
|
770
|
+
* @generated from field: string filing_id = 1;
|
|
771
|
+
*/
|
|
772
|
+
filingId: string;
|
|
773
|
+
/**
|
|
774
|
+
* @generated from field: string filing_type = 2;
|
|
775
|
+
*/
|
|
776
|
+
filingType: string;
|
|
777
|
+
/**
|
|
778
|
+
* @generated from field: google.protobuf.Timestamp filed_at = 3;
|
|
779
|
+
*/
|
|
780
|
+
filedAt?: Timestamp;
|
|
781
|
+
/**
|
|
782
|
+
* @generated from field: google.protobuf.Timestamp due_date = 4;
|
|
783
|
+
*/
|
|
784
|
+
dueDate?: Timestamp;
|
|
785
|
+
/**
|
|
786
|
+
* @generated from field: string status = 5;
|
|
787
|
+
*/
|
|
788
|
+
status: string;
|
|
789
|
+
};
|
|
790
|
+
/**
|
|
791
|
+
* Describes the message ottochain.apps.corporate.v1.FilingRecord.
|
|
792
|
+
* Use `create(FilingRecordSchema)` to create a new message.
|
|
793
|
+
*/
|
|
794
|
+
export declare const FilingRecordSchema: GenMessage<FilingRecord>;
|
|
795
|
+
/**
|
|
796
|
+
* @generated from message ottochain.apps.corporate.v1.ComplianceRequirement
|
|
797
|
+
*/
|
|
798
|
+
export type ComplianceRequirement = Message<"ottochain.apps.corporate.v1.ComplianceRequirement"> & {
|
|
799
|
+
/**
|
|
800
|
+
* @generated from field: string requirement_id = 1;
|
|
801
|
+
*/
|
|
802
|
+
requirementId: string;
|
|
803
|
+
/**
|
|
804
|
+
* @generated from field: string description = 2;
|
|
805
|
+
*/
|
|
806
|
+
description: string;
|
|
807
|
+
/**
|
|
808
|
+
* ANNUAL, QUARTERLY, etc.
|
|
809
|
+
*
|
|
810
|
+
* @generated from field: string frequency = 3;
|
|
811
|
+
*/
|
|
812
|
+
frequency: string;
|
|
813
|
+
/**
|
|
814
|
+
* @generated from field: google.protobuf.Timestamp next_due = 4;
|
|
815
|
+
*/
|
|
816
|
+
nextDue?: Timestamp;
|
|
817
|
+
};
|
|
818
|
+
/**
|
|
819
|
+
* Describes the message ottochain.apps.corporate.v1.ComplianceRequirement.
|
|
820
|
+
* Use `create(ComplianceRequirementSchema)` to create a new message.
|
|
821
|
+
*/
|
|
822
|
+
export declare const ComplianceRequirementSchema: GenMessage<ComplianceRequirement>;
|
|
823
|
+
/**
|
|
824
|
+
* @generated from message ottochain.apps.corporate.v1.CreateEntityRequest
|
|
825
|
+
*/
|
|
826
|
+
export type CreateEntityRequest = Message<"ottochain.apps.corporate.v1.CreateEntityRequest"> & {
|
|
827
|
+
/**
|
|
828
|
+
* @generated from field: string legal_name = 1;
|
|
829
|
+
*/
|
|
830
|
+
legalName: string;
|
|
831
|
+
/**
|
|
832
|
+
* @generated from field: ottochain.apps.corporate.v1.EntityType entity_type = 2;
|
|
833
|
+
*/
|
|
834
|
+
entityType: EntityType;
|
|
835
|
+
/**
|
|
836
|
+
* @generated from field: ottochain.apps.corporate.v1.Jurisdiction jurisdiction = 3;
|
|
837
|
+
*/
|
|
838
|
+
jurisdiction?: Jurisdiction;
|
|
839
|
+
/**
|
|
840
|
+
* @generated from field: ottochain.apps.corporate.v1.RegisteredAgent registered_agent = 4;
|
|
841
|
+
*/
|
|
842
|
+
registeredAgent?: RegisteredAgent;
|
|
843
|
+
/**
|
|
844
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.Incorporator incorporators = 5;
|
|
845
|
+
*/
|
|
846
|
+
incorporators: Incorporator[];
|
|
847
|
+
/**
|
|
848
|
+
* @generated from field: repeated ottochain.apps.corporate.v1.ShareClass share_classes = 6;
|
|
849
|
+
*/
|
|
850
|
+
shareClasses: ShareClass[];
|
|
851
|
+
};
|
|
852
|
+
/**
|
|
853
|
+
* Describes the message ottochain.apps.corporate.v1.CreateEntityRequest.
|
|
854
|
+
* Use `create(CreateEntityRequestSchema)` to create a new message.
|
|
855
|
+
*/
|
|
856
|
+
export declare const CreateEntityRequestSchema: GenMessage<CreateEntityRequest>;
|
|
857
|
+
/**
|
|
858
|
+
* @generated from message ottochain.apps.corporate.v1.AppointDirectorRequest
|
|
859
|
+
*/
|
|
860
|
+
export type AppointDirectorRequest = Message<"ottochain.apps.corporate.v1.AppointDirectorRequest"> & {
|
|
861
|
+
/**
|
|
862
|
+
* @generated from field: string entity_id = 1;
|
|
863
|
+
*/
|
|
864
|
+
entityId: string;
|
|
865
|
+
/**
|
|
866
|
+
* @generated from field: string name = 2;
|
|
867
|
+
*/
|
|
868
|
+
name: string;
|
|
869
|
+
/**
|
|
870
|
+
* @generated from field: string email = 3;
|
|
871
|
+
*/
|
|
872
|
+
email: string;
|
|
873
|
+
/**
|
|
874
|
+
* @generated from field: google.protobuf.Timestamp term_start = 4;
|
|
875
|
+
*/
|
|
876
|
+
termStart?: Timestamp;
|
|
877
|
+
/**
|
|
878
|
+
* @generated from field: google.protobuf.Timestamp term_end = 5;
|
|
879
|
+
*/
|
|
880
|
+
termEnd?: Timestamp;
|
|
881
|
+
/**
|
|
882
|
+
* @generated from field: bool is_independent = 6;
|
|
883
|
+
*/
|
|
884
|
+
isIndependent: boolean;
|
|
885
|
+
};
|
|
886
|
+
/**
|
|
887
|
+
* Describes the message ottochain.apps.corporate.v1.AppointDirectorRequest.
|
|
888
|
+
* Use `create(AppointDirectorRequestSchema)` to create a new message.
|
|
889
|
+
*/
|
|
890
|
+
export declare const AppointDirectorRequestSchema: GenMessage<AppointDirectorRequest>;
|
|
891
|
+
/**
|
|
892
|
+
* @generated from message ottochain.apps.corporate.v1.IssueSharesRequest
|
|
893
|
+
*/
|
|
894
|
+
export type IssueSharesRequest = Message<"ottochain.apps.corporate.v1.IssueSharesRequest"> & {
|
|
895
|
+
/**
|
|
896
|
+
* @generated from field: string entity_id = 1;
|
|
897
|
+
*/
|
|
898
|
+
entityId: string;
|
|
899
|
+
/**
|
|
900
|
+
* @generated from field: string class_id = 2;
|
|
901
|
+
*/
|
|
902
|
+
classId: string;
|
|
903
|
+
/**
|
|
904
|
+
* @generated from field: ottochain.v1.Address recipient = 3;
|
|
905
|
+
*/
|
|
906
|
+
recipient?: Address$1;
|
|
907
|
+
/**
|
|
908
|
+
* @generated from field: int64 shares = 4;
|
|
909
|
+
*/
|
|
910
|
+
shares: bigint;
|
|
911
|
+
/**
|
|
912
|
+
* @generated from field: int64 price_per_share_cents = 5;
|
|
913
|
+
*/
|
|
914
|
+
pricePerShareCents: bigint;
|
|
915
|
+
/**
|
|
916
|
+
* @generated from field: string authorization_resolution_id = 6;
|
|
917
|
+
*/
|
|
918
|
+
authorizationResolutionId: string;
|
|
919
|
+
};
|
|
920
|
+
/**
|
|
921
|
+
* Describes the message ottochain.apps.corporate.v1.IssueSharesRequest.
|
|
922
|
+
* Use `create(IssueSharesRequestSchema)` to create a new message.
|
|
923
|
+
*/
|
|
924
|
+
export declare const IssueSharesRequestSchema: GenMessage<IssueSharesRequest>;
|
|
925
|
+
/**
|
|
926
|
+
* @generated from message ottochain.apps.corporate.v1.ProposeResolutionRequest
|
|
927
|
+
*/
|
|
928
|
+
export type ProposeResolutionRequest = Message<"ottochain.apps.corporate.v1.ProposeResolutionRequest"> & {
|
|
929
|
+
/**
|
|
930
|
+
* @generated from field: string entity_id = 1;
|
|
931
|
+
*/
|
|
932
|
+
entityId: string;
|
|
933
|
+
/**
|
|
934
|
+
* @generated from field: string title = 2;
|
|
935
|
+
*/
|
|
936
|
+
title: string;
|
|
937
|
+
/**
|
|
938
|
+
* @generated from field: string body = 3;
|
|
939
|
+
*/
|
|
940
|
+
body: string;
|
|
941
|
+
/**
|
|
942
|
+
* @generated from field: string resolution_type = 4;
|
|
943
|
+
*/
|
|
944
|
+
resolutionType: string;
|
|
945
|
+
/**
|
|
946
|
+
* @generated from field: ottochain.v1.Address proposer = 5;
|
|
947
|
+
*/
|
|
948
|
+
proposer?: Address$1;
|
|
949
|
+
};
|
|
950
|
+
/**
|
|
951
|
+
* Describes the message ottochain.apps.corporate.v1.ProposeResolutionRequest.
|
|
952
|
+
* Use `create(ProposeResolutionRequestSchema)` to create a new message.
|
|
953
|
+
*/
|
|
954
|
+
export declare const ProposeResolutionRequestSchema: GenMessage<ProposeResolutionRequest>;
|
|
955
|
+
/**
|
|
956
|
+
* Type of corporate entity
|
|
957
|
+
*
|
|
958
|
+
* @generated from enum ottochain.apps.corporate.v1.EntityType
|
|
959
|
+
*/
|
|
960
|
+
export declare enum EntityType {
|
|
961
|
+
/**
|
|
962
|
+
* @generated from enum value: ENTITY_TYPE_UNSPECIFIED = 0;
|
|
963
|
+
*/
|
|
964
|
+
UNSPECIFIED = 0,
|
|
965
|
+
/**
|
|
966
|
+
* C Corporation
|
|
967
|
+
*
|
|
968
|
+
* @generated from enum value: ENTITY_TYPE_C_CORP = 1;
|
|
969
|
+
*/
|
|
970
|
+
C_CORP = 1,
|
|
971
|
+
/**
|
|
972
|
+
* S Corporation
|
|
973
|
+
*
|
|
974
|
+
* @generated from enum value: ENTITY_TYPE_S_CORP = 2;
|
|
975
|
+
*/
|
|
976
|
+
S_CORP = 2,
|
|
977
|
+
/**
|
|
978
|
+
* Benefit Corporation
|
|
979
|
+
*
|
|
980
|
+
* @generated from enum value: ENTITY_TYPE_B_CORP = 3;
|
|
981
|
+
*/
|
|
982
|
+
B_CORP = 3,
|
|
983
|
+
/**
|
|
984
|
+
* Limited Liability Company
|
|
985
|
+
*
|
|
986
|
+
* @generated from enum value: ENTITY_TYPE_LLC = 4;
|
|
987
|
+
*/
|
|
988
|
+
LLC = 4,
|
|
989
|
+
/**
|
|
990
|
+
* Limited Partnership
|
|
991
|
+
*
|
|
992
|
+
* @generated from enum value: ENTITY_TYPE_LP = 5;
|
|
993
|
+
*/
|
|
994
|
+
LP = 5,
|
|
995
|
+
/**
|
|
996
|
+
* Limited Liability Partnership
|
|
997
|
+
*
|
|
998
|
+
* @generated from enum value: ENTITY_TYPE_LLP = 6;
|
|
999
|
+
*/
|
|
1000
|
+
LLP = 6
|
|
1001
|
+
}
|
|
1002
|
+
/**
|
|
1003
|
+
* Describes the enum ottochain.apps.corporate.v1.EntityType.
|
|
1004
|
+
*/
|
|
1005
|
+
export declare const EntityTypeSchema: GenEnum<EntityType>;
|
|
1006
|
+
/**
|
|
1007
|
+
* Entity lifecycle state
|
|
1008
|
+
*
|
|
1009
|
+
* @generated from enum ottochain.apps.corporate.v1.EntityState
|
|
1010
|
+
*/
|
|
1011
|
+
export declare enum EntityState {
|
|
1012
|
+
/**
|
|
1013
|
+
* @generated from enum value: ENTITY_STATE_UNSPECIFIED = 0;
|
|
1014
|
+
*/
|
|
1015
|
+
UNSPECIFIED = 0,
|
|
1016
|
+
/**
|
|
1017
|
+
* Formation in progress
|
|
1018
|
+
*
|
|
1019
|
+
* @generated from enum value: ENTITY_STATE_INCORPORATING = 1;
|
|
1020
|
+
*/
|
|
1021
|
+
INCORPORATING = 1,
|
|
1022
|
+
/**
|
|
1023
|
+
* Good standing
|
|
1024
|
+
*
|
|
1025
|
+
* @generated from enum value: ENTITY_STATE_ACTIVE = 2;
|
|
1026
|
+
*/
|
|
1027
|
+
ACTIVE = 2,
|
|
1028
|
+
/**
|
|
1029
|
+
* Administrative suspension
|
|
1030
|
+
*
|
|
1031
|
+
* @generated from enum value: ENTITY_STATE_SUSPENDED = 3;
|
|
1032
|
+
*/
|
|
1033
|
+
SUSPENDED = 3,
|
|
1034
|
+
/**
|
|
1035
|
+
* Terminated
|
|
1036
|
+
*
|
|
1037
|
+
* @generated from enum value: ENTITY_STATE_DISSOLVED = 4;
|
|
1038
|
+
*/
|
|
1039
|
+
DISSOLVED = 4
|
|
1040
|
+
}
|
|
1041
|
+
/**
|
|
1042
|
+
* Describes the enum ottochain.apps.corporate.v1.EntityState.
|
|
1043
|
+
*/
|
|
1044
|
+
export declare const EntityStateSchema: GenEnum<EntityState>;
|
|
1045
|
+
/**
|
|
1046
|
+
* Director status
|
|
1047
|
+
*
|
|
1048
|
+
* @generated from enum ottochain.apps.corporate.v1.DirectorStatus
|
|
1049
|
+
*/
|
|
1050
|
+
export declare enum DirectorStatus {
|
|
1051
|
+
/**
|
|
1052
|
+
* @generated from enum value: DIRECTOR_STATUS_UNSPECIFIED = 0;
|
|
1053
|
+
*/
|
|
1054
|
+
UNSPECIFIED = 0,
|
|
1055
|
+
/**
|
|
1056
|
+
* @generated from enum value: DIRECTOR_STATUS_ACTIVE = 1;
|
|
1057
|
+
*/
|
|
1058
|
+
ACTIVE = 1,
|
|
1059
|
+
/**
|
|
1060
|
+
* @generated from enum value: DIRECTOR_STATUS_RESIGNED = 2;
|
|
1061
|
+
*/
|
|
1062
|
+
RESIGNED = 2,
|
|
1063
|
+
/**
|
|
1064
|
+
* @generated from enum value: DIRECTOR_STATUS_REMOVED = 3;
|
|
1065
|
+
*/
|
|
1066
|
+
REMOVED = 3,
|
|
1067
|
+
/**
|
|
1068
|
+
* @generated from enum value: DIRECTOR_STATUS_TERM_EXPIRED = 4;
|
|
1069
|
+
*/
|
|
1070
|
+
TERM_EXPIRED = 4
|
|
1071
|
+
}
|
|
1072
|
+
/**
|
|
1073
|
+
* Describes the enum ottochain.apps.corporate.v1.DirectorStatus.
|
|
1074
|
+
*/
|
|
1075
|
+
export declare const DirectorStatusSchema: GenEnum<DirectorStatus>;
|
|
1076
|
+
/**
|
|
1077
|
+
* Officer status
|
|
1078
|
+
*
|
|
1079
|
+
* @generated from enum ottochain.apps.corporate.v1.OfficerStatus
|
|
1080
|
+
*/
|
|
1081
|
+
export declare enum OfficerStatus {
|
|
1082
|
+
/**
|
|
1083
|
+
* @generated from enum value: OFFICER_STATUS_UNSPECIFIED = 0;
|
|
1084
|
+
*/
|
|
1085
|
+
UNSPECIFIED = 0,
|
|
1086
|
+
/**
|
|
1087
|
+
* @generated from enum value: OFFICER_STATUS_ACTIVE = 1;
|
|
1088
|
+
*/
|
|
1089
|
+
ACTIVE = 1,
|
|
1090
|
+
/**
|
|
1091
|
+
* @generated from enum value: OFFICER_STATUS_RESIGNED = 2;
|
|
1092
|
+
*/
|
|
1093
|
+
RESIGNED = 2,
|
|
1094
|
+
/**
|
|
1095
|
+
* @generated from enum value: OFFICER_STATUS_REMOVED = 3;
|
|
1096
|
+
*/
|
|
1097
|
+
REMOVED = 3
|
|
1098
|
+
}
|
|
1099
|
+
/**
|
|
1100
|
+
* Describes the enum ottochain.apps.corporate.v1.OfficerStatus.
|
|
1101
|
+
*/
|
|
1102
|
+
export declare const OfficerStatusSchema: GenEnum<OfficerStatus>;
|
|
1103
|
+
/**
|
|
1104
|
+
* Board meeting type
|
|
1105
|
+
*
|
|
1106
|
+
* @generated from enum ottochain.apps.corporate.v1.BoardMeetingType
|
|
1107
|
+
*/
|
|
1108
|
+
export declare enum BoardMeetingType {
|
|
1109
|
+
/**
|
|
1110
|
+
* @generated from enum value: BOARD_MEETING_TYPE_UNSPECIFIED = 0;
|
|
1111
|
+
*/
|
|
1112
|
+
UNSPECIFIED = 0,
|
|
1113
|
+
/**
|
|
1114
|
+
* @generated from enum value: BOARD_MEETING_TYPE_REGULAR = 1;
|
|
1115
|
+
*/
|
|
1116
|
+
REGULAR = 1,
|
|
1117
|
+
/**
|
|
1118
|
+
* @generated from enum value: BOARD_MEETING_TYPE_SPECIAL = 2;
|
|
1119
|
+
*/
|
|
1120
|
+
SPECIAL = 2,
|
|
1121
|
+
/**
|
|
1122
|
+
* @generated from enum value: BOARD_MEETING_TYPE_ANNUAL = 3;
|
|
1123
|
+
*/
|
|
1124
|
+
ANNUAL = 3,
|
|
1125
|
+
/**
|
|
1126
|
+
* @generated from enum value: BOARD_MEETING_TYPE_ORGANIZATIONAL = 4;
|
|
1127
|
+
*/
|
|
1128
|
+
ORGANIZATIONAL = 4
|
|
1129
|
+
}
|
|
1130
|
+
/**
|
|
1131
|
+
* Describes the enum ottochain.apps.corporate.v1.BoardMeetingType.
|
|
1132
|
+
*/
|
|
1133
|
+
export declare const BoardMeetingTypeSchema: GenEnum<BoardMeetingType>;
|
|
1134
|
+
/**
|
|
1135
|
+
* Resolution status
|
|
1136
|
+
*
|
|
1137
|
+
* @generated from enum ottochain.apps.corporate.v1.ResolutionStatus
|
|
1138
|
+
*/
|
|
1139
|
+
export declare enum ResolutionStatus {
|
|
1140
|
+
/**
|
|
1141
|
+
* @generated from enum value: RESOLUTION_STATUS_UNSPECIFIED = 0;
|
|
1142
|
+
*/
|
|
1143
|
+
UNSPECIFIED = 0,
|
|
1144
|
+
/**
|
|
1145
|
+
* @generated from enum value: RESOLUTION_STATUS_DRAFT = 1;
|
|
1146
|
+
*/
|
|
1147
|
+
DRAFT = 1,
|
|
1148
|
+
/**
|
|
1149
|
+
* @generated from enum value: RESOLUTION_STATUS_PROPOSED = 2;
|
|
1150
|
+
*/
|
|
1151
|
+
PROPOSED = 2,
|
|
1152
|
+
/**
|
|
1153
|
+
* @generated from enum value: RESOLUTION_STATUS_VOTING = 3;
|
|
1154
|
+
*/
|
|
1155
|
+
VOTING = 3,
|
|
1156
|
+
/**
|
|
1157
|
+
* @generated from enum value: RESOLUTION_STATUS_ADOPTED = 4;
|
|
1158
|
+
*/
|
|
1159
|
+
ADOPTED = 4,
|
|
1160
|
+
/**
|
|
1161
|
+
* @generated from enum value: RESOLUTION_STATUS_REJECTED = 5;
|
|
1162
|
+
*/
|
|
1163
|
+
REJECTED = 5,
|
|
1164
|
+
/**
|
|
1165
|
+
* @generated from enum value: RESOLUTION_STATUS_WITHDRAWN = 6;
|
|
1166
|
+
*/
|
|
1167
|
+
WITHDRAWN = 6
|
|
1168
|
+
}
|
|
1169
|
+
/**
|
|
1170
|
+
* Describes the enum ottochain.apps.corporate.v1.ResolutionStatus.
|
|
1171
|
+
*/
|
|
1172
|
+
export declare const ResolutionStatusSchema: GenEnum<ResolutionStatus>;
|