dop-sharedmodel 1.3.5 → 1.3.7
Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,7 @@ import { ContractTransaction } from 'ethers';
|
|
3
3
|
import { MerkletreeScanStatus } from './merkletree-scan';
|
4
4
|
import { FeesSerialized } from './network-config';
|
5
5
|
import { DopWalletBalanceBucket } from './balance';
|
6
|
+
import { TXIDVersion } from './engine';
|
6
7
|
export type DopAPICiphertext = {
|
7
8
|
iv: string;
|
8
9
|
data: string[];
|
@@ -45,6 +46,7 @@ export type Chain = {
|
|
45
46
|
id: number;
|
46
47
|
};
|
47
48
|
export type DopBalancesEvent = {
|
49
|
+
txidVersion: TXIDVersion;
|
48
50
|
chain: Chain;
|
49
51
|
erc20Amounts: DopERC20Amount[];
|
50
52
|
balanceBucket: DopWalletBalanceBucket;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"response-types.js","sourceRoot":"","sources":["../../src/models/response-types.ts"],"names":[],"mappings":";;;
|
1
|
+
{"version":3,"file":"response-types.js","sourceRoot":"","sources":["../../src/models/response-types.ts"],"names":[],"mappings":";;;AAYA;;;GAGG;AACH,IAAY,UAIX;AAJD,WAAY,UAAU;IACpB,6CAAS,CAAA;IACT,6CAAS,CAAA;IACT,6CAAS,CAAA;AACX,CAAC,EAJW,UAAU,0BAAV,UAAU,QAIrB;AA+BD,IAAY,SAEX;AAFD,WAAY,SAAS;IACnB,uCAAO,CAAA;AACT,CAAC,EAFW,SAAS,yBAAT,SAAS,QAEpB;AAgED,IAAY,YAGX;AAHD,WAAY,YAAY;IACtB,mDAAU,CAAA;IACV,qDAAW,CAAA;AACb,CAAC,EAHW,YAAY,4BAAZ,YAAY,QAGvB;AAqED,IAAY,8BAMX;AAND,WAAY,8BAA8B;IACxC,+DAA6B,CAAA;IAC7B,mEAAiC,CAAA;IACjC,2EAAyC,CAAA;IACzC,iFAA+C,CAAA;IAC/C,qDAAmB,CAAA;AACrB,CAAC,EANW,8BAA8B,8CAA9B,8BAA8B,QAMzC","sourcesContent":["/// <reference types=\"../types/global\" />\nimport { ContractTransaction } from 'ethers';\nimport { MerkletreeScanStatus } from './merkletree-scan';\nimport { FeesSerialized } from './network-config';\nimport { DopWalletBalanceBucket } from './balance';\nimport { TXIDVersion } from './engine';\n\nexport type DopAPICiphertext = {\n iv: string;\n data: string[];\n};\n\n/**\n * Type0 / Type1 = non-EIP-1559 (gasPrice).\n * Type2 = EIP-1559 (maxFeePerGas and maxPriorityFeePerGas).\n */\nexport enum EVMGasType {\n Type0 = 0,\n Type1 = 1,\n Type2 = 2,\n}\n\nexport type TransactionGasDetails =\n | TransactionGasDetailsType0\n | TransactionGasDetailsType1\n | TransactionGasDetailsType2;\n\nexport type TransactionGasDetailsType0 = {\n evmGasType: EVMGasType.Type0;\n gasEstimate: bigint;\n gasPrice: bigint;\n};\n\nexport type TransactionGasDetailsType1 = {\n evmGasType: EVMGasType.Type1;\n gasEstimate: bigint;\n gasPrice: bigint;\n};\n\nexport type TransactionGasDetailsType2 = {\n evmGasType: EVMGasType.Type2;\n gasEstimate: bigint;\n maxFeePerGas: bigint;\n maxPriorityFeePerGas: bigint;\n};\n\nexport type FeeTokenDetails = {\n tokenAddress: string;\n feePerUnitGas: bigint;\n};\n\nexport enum ChainType {\n EVM = 0,\n}\n\nexport type Chain = {\n type: ChainType;\n id: number;\n};\n\nexport type DopBalancesEvent = {\n txidVersion: TXIDVersion;\n chain: Chain;\n erc20Amounts: DopERC20Amount[];\n balanceBucket: DopWalletBalanceBucket;\n nftAmounts: DopNFTAmount[];\n dopWalletID: string;\n};\n\nexport type MerkletreeScanUpdateEvent = {\n chain: Chain;\n scanStatus: MerkletreeScanStatus;\n progress: number;\n};\n\nexport type LoadProviderResponse = {\n feesSerialized: FeesSerialized;\n};\n\nexport type DopWalletInfo = {\n id: string;\n dopAddress: string;\n};\n\nexport type DopWalletAddressData = {\n masterPublicKey: bigint;\n viewingPublicKey: bigint;\n};\n\nexport type DopTxidFromNullifiersResponse = {\n txid?: string;\n};\n\nexport type DopPopulateTransactionResponse = {\n transaction: ContractTransaction;\n nullifiers?: string[];\n};\n\nexport type DopTransactionGasEstimateResponse = {\n gasEstimate: bigint;\n relayerFeeCommitment?: CommitmentSummary;\n};\n\nexport type DopERC20Recipient = {\n tokenAddress: string;\n recipientAddress: string;\n};\n\nexport type DopERC20Amount = {\n tokenAddress: string;\n amount: bigint;\n};\n\nexport type DopERC20AmountRecipient = DopERC20Amount & {\n recipientAddress: string;\n};\n\nexport enum NFTTokenType {\n ERC721 = 1,\n ERC1155 = 2,\n}\n\nexport type NFTAmount = {\n nftAddress: string;\n nftTokenType: NFTTokenType;\n tokenSubID: string;\n amountString: string;\n};\n\nexport type NFTAmountRecipient = NFTAmount & {\n recipientAddress: string;\n};\n\nexport type DopNFTAmount = {\n nftAddress: string;\n nftTokenType: NFTTokenType;\n tokenSubID: string;\n amount: bigint;\n};\n\nexport type DopNFTAmountRecipient = DopNFTAmount & {\n recipientAddress: string;\n};\n\nexport type EncryptDataWithSharedKeyResponse = {\n encryptedData: [string, string];\n randomPubKey: string;\n sharedKey: Uint8Array;\n};\n\nexport type EncryptDataWithSharedKeySerialized = {\n encryptedData: [string, string];\n randomPubKey: string;\n sharedKey: string;\n};\n\nexport type Pbkdf2Response = string;\n\ntype SendAdditionalData = {\n recipientAddress: Optional<string>;\n walletSource: Optional<string>;\n memoText: Optional<string>;\n};\n\nexport type DopSendERC20Amount = DopERC20Amount & SendAdditionalData;\n\nexport type DopSendNFTAmount = DopNFTAmount & SendAdditionalData;\n\ntype UnshieldAdditonalData = {\n unshieldFee: Optional<string>;\n};\n\nexport type DopUnshieldERC20Amount = DopSendERC20Amount &\n UnshieldAdditonalData;\n\nexport type DopUnshieldNFTAmount = DopSendNFTAmount &\n UnshieldAdditonalData;\n\ntype ReceiveAdditionalData = {\n senderAddress: Optional<string>;\n memoText: Optional<string>;\n shieldFee: Optional<string>;\n};\n\nexport type DopReceiveERC20Amount = DopERC20Amount &\n ReceiveAdditionalData;\n\nexport type DopReceiveNFTAmount = DopNFTAmount & ReceiveAdditionalData;\n\nexport enum TransactionHistoryItemCategory {\n ShieldERC20s = 'ShieldERC20s',\n UnshieldERC20s = 'UnshieldERC20s',\n TransferSendERC20s = 'TransferSendERC20s',\n TransferReceiveERC20s = 'TransferReceiveERC20s',\n Unknown = 'Unknown',\n}\n\nexport type TransactionHistoryItem = {\n txid: string;\n version: number;\n timestamp: Optional<number>;\n blockNumber: Optional<number>;\n receiveERC20Amounts: DopReceiveERC20Amount[];\n transferERC20Amounts: DopSendERC20Amount[];\n changeERC20Amounts: DopERC20Amount[];\n relayerFeeERC20Amount?: DopERC20Amount;\n unshieldERC20Amounts: DopUnshieldERC20Amount[];\n receiveNFTAmounts: DopReceiveNFTAmount[];\n transferNFTAmounts: DopSendNFTAmount[];\n unshieldNFTAmounts: DopUnshieldNFTAmount[];\n category: TransactionHistoryItemCategory;\n};\n\ntype Ciphertext = {\n iv: string;\n tag: string;\n data: string[];\n};\n\nexport type CommitmentCiphertext = {\n ciphertext: Ciphertext;\n blindedSenderViewingKey: string;\n blindedReceiverViewingKey: string;\n annotationData: string;\n memo: string;\n};\n\nexport type CommitmentSummary = {\n commitmentCiphertext: CommitmentCiphertext;\n commitmentHash: string;\n};\n"]}
|