@bitgo/sdk-core 1.0.2-rc.0 → 1.1.0-dev.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/dist/src/account-lib/baseCoin/baseKeyPair.d.ts +27 -0
- package/dist/src/account-lib/baseCoin/baseKeyPair.d.ts.map +1 -0
- package/dist/src/account-lib/baseCoin/baseKeyPair.js +3 -0
- package/dist/src/account-lib/baseCoin/baseTransaction.d.ts +71 -0
- package/dist/src/account-lib/baseCoin/baseTransaction.d.ts.map +1 -0
- package/dist/src/account-lib/baseCoin/baseTransaction.js +69 -0
- package/dist/src/account-lib/baseCoin/baseTransactionBuilder.d.ts +128 -0
- package/dist/src/account-lib/baseCoin/baseTransactionBuilder.d.ts.map +1 -0
- package/dist/src/account-lib/baseCoin/baseTransactionBuilder.js +138 -0
- package/dist/src/account-lib/baseCoin/baseTransactionBuilderFactory.d.ts +29 -0
- package/dist/src/account-lib/baseCoin/baseTransactionBuilderFactory.d.ts.map +1 -0
- package/dist/src/account-lib/baseCoin/baseTransactionBuilderFactory.js +19 -0
- package/dist/src/account-lib/baseCoin/baseUtils.d.ts +45 -0
- package/dist/src/account-lib/baseCoin/baseUtils.d.ts.map +1 -0
- package/dist/src/account-lib/baseCoin/baseUtils.js +3 -0
- package/dist/src/account-lib/baseCoin/blsKeyPair.d.ts +75 -0
- package/dist/src/account-lib/baseCoin/blsKeyPair.d.ts.map +1 -0
- package/dist/src/account-lib/baseCoin/blsKeyPair.js +179 -0
- package/dist/src/account-lib/baseCoin/ed25519KeyPair.d.ts +50 -0
- package/dist/src/account-lib/baseCoin/ed25519KeyPair.d.ts.map +1 -0
- package/dist/src/account-lib/baseCoin/ed25519KeyPair.js +145 -0
- package/dist/src/account-lib/baseCoin/enum.d.ts +45 -0
- package/dist/src/account-lib/baseCoin/enum.d.ts.map +1 -0
- package/dist/src/account-lib/baseCoin/enum.js +74 -0
- package/dist/src/account-lib/baseCoin/errors.d.ts +59 -0
- package/dist/src/account-lib/baseCoin/errors.d.ts.map +1 -0
- package/dist/src/account-lib/baseCoin/errors.js +105 -0
- package/dist/src/account-lib/baseCoin/iface.d.ts +155 -0
- package/dist/src/account-lib/baseCoin/iface.d.ts.map +1 -0
- package/dist/src/account-lib/baseCoin/iface.js +38 -0
- package/dist/src/account-lib/baseCoin/index.d.ts +12 -0
- package/dist/src/account-lib/baseCoin/index.d.ts.map +1 -0
- package/dist/src/account-lib/baseCoin/index.js +31 -0
- package/dist/src/account-lib/baseCoin/secp256k1ExtendedKeyPair.d.ts +55 -0
- package/dist/src/account-lib/baseCoin/secp256k1ExtendedKeyPair.d.ts.map +1 -0
- package/dist/src/account-lib/baseCoin/secp256k1ExtendedKeyPair.js +124 -0
- package/dist/src/account-lib/index.d.ts +5 -0
- package/dist/src/account-lib/index.d.ts.map +1 -0
- package/dist/src/account-lib/index.js +17 -0
- package/dist/src/account-lib/mpc/curves/baseCurve.d.ts +19 -0
- package/dist/src/account-lib/mpc/curves/baseCurve.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/curves/baseCurve.js +6 -0
- package/dist/src/account-lib/mpc/curves/ed25519.d.ts +17 -0
- package/dist/src/account-lib/mpc/curves/ed25519.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/curves/ed25519.js +57 -0
- package/dist/src/account-lib/mpc/curves/index.d.ts +6 -0
- package/dist/src/account-lib/mpc/curves/index.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/curves/index.js +8 -0
- package/dist/src/account-lib/mpc/curves/secp256k1.d.ts +17 -0
- package/dist/src/account-lib/mpc/curves/secp256k1.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/curves/secp256k1.js +70 -0
- package/dist/src/account-lib/mpc/hdTree.d.ts +24 -0
- package/dist/src/account-lib/mpc/hdTree.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/hdTree.js +94 -0
- package/dist/src/account-lib/mpc/index.d.ts +8 -0
- package/dist/src/account-lib/mpc/index.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/index.js +23 -0
- package/dist/src/account-lib/mpc/shamir.d.ts +26 -0
- package/dist/src/account-lib/mpc/shamir.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/shamir.js +86 -0
- package/dist/src/account-lib/mpc/tss/ecdsa/ecdsa.d.ts +25 -0
- package/dist/src/account-lib/mpc/tss/ecdsa/ecdsa.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/tss/ecdsa/ecdsa.js +121 -0
- package/dist/src/account-lib/mpc/tss/ecdsa/index.d.ts +4 -0
- package/dist/src/account-lib/mpc/tss/ecdsa/index.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/tss/ecdsa/index.js +29 -0
- package/dist/src/account-lib/mpc/tss/ecdsa/types.d.ts +40 -0
- package/dist/src/account-lib/mpc/tss/ecdsa/types.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/tss/ecdsa/types.js +3 -0
- package/dist/src/account-lib/mpc/tss/eddsa/eddsa.d.ts +29 -0
- package/dist/src/account-lib/mpc/tss/eddsa/eddsa.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/tss/eddsa/eddsa.js +276 -0
- package/dist/src/account-lib/mpc/tss/eddsa/index.d.ts +4 -0
- package/dist/src/account-lib/mpc/tss/eddsa/index.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/tss/eddsa/index.js +30 -0
- package/dist/src/account-lib/mpc/tss/eddsa/types.d.ts +70 -0
- package/dist/src/account-lib/mpc/tss/eddsa/types.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/tss/eddsa/types.js +3 -0
- package/dist/src/account-lib/mpc/tss/index.d.ts +6 -0
- package/dist/src/account-lib/mpc/tss/index.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/tss/index.js +35 -0
- package/dist/src/account-lib/mpc/util.d.ts +8 -0
- package/dist/src/account-lib/mpc/util.d.ts.map +1 -0
- package/dist/src/account-lib/mpc/util.js +42 -0
- package/dist/src/account-lib/util/crypto.d.ts +106 -0
- package/dist/src/account-lib/util/crypto.d.ts.map +1 -0
- package/dist/src/account-lib/util/crypto.js +269 -0
- package/dist/src/account-lib/util/ed25519KeyDeriver.d.ts +49 -0
- package/dist/src/account-lib/util/ed25519KeyDeriver.d.ts.map +1 -0
- package/dist/src/account-lib/util/ed25519KeyDeriver.js +87 -0
- package/dist/src/api/bip32path.d.ts +24 -0
- package/dist/src/api/bip32path.d.ts.map +1 -0
- package/dist/src/api/bip32path.js +45 -0
- package/dist/src/api/index.d.ts +3 -0
- package/dist/src/api/index.d.ts.map +1 -0
- package/dist/src/{v2 → api}/index.js +2 -2
- package/dist/src/api/types.d.ts +20 -0
- package/dist/src/api/types.d.ts.map +1 -0
- package/dist/src/api/types.js +3 -0
- package/dist/src/bitgo/baseCoin/baseCoin.d.ts +230 -0
- package/dist/src/bitgo/baseCoin/baseCoin.d.ts.map +1 -0
- package/dist/src/bitgo/baseCoin/baseCoin.js +292 -0
- package/dist/src/bitgo/baseCoin/iBaseCoin.d.ts +257 -0
- package/dist/src/bitgo/baseCoin/iBaseCoin.d.ts.map +1 -0
- package/dist/src/bitgo/baseCoin/iBaseCoin.js +3 -0
- package/dist/src/bitgo/baseCoin/index.d.ts +3 -0
- package/dist/src/bitgo/baseCoin/index.d.ts.map +1 -0
- package/dist/src/bitgo/baseCoin/index.js +15 -0
- package/dist/src/bitgo/bip32util.d.ts +17 -0
- package/dist/src/bitgo/bip32util.d.ts.map +1 -0
- package/dist/src/bitgo/bip32util.js +59 -0
- package/dist/src/bitgo/bitcoin.d.ts +16 -0
- package/dist/src/bitgo/bitcoin.d.ts.map +1 -0
- package/dist/src/bitgo/bitcoin.js +52 -0
- package/dist/src/bitgo/bitgoBase.d.ts +22 -0
- package/dist/src/bitgo/bitgoBase.d.ts.map +1 -0
- package/dist/src/bitgo/bitgoBase.js +3 -0
- package/dist/src/bitgo/coinFactory.d.ts +31 -0
- package/dist/src/bitgo/coinFactory.d.ts.map +1 -0
- package/dist/src/bitgo/coinFactory.js +59 -0
- package/dist/src/bitgo/config.d.ts +8 -0
- package/dist/src/bitgo/config.d.ts.map +1 -0
- package/dist/src/bitgo/config.js +25 -0
- package/dist/src/bitgo/ecdh.d.ts +24 -0
- package/dist/src/bitgo/ecdh.d.ts.map +1 -0
- package/dist/src/bitgo/ecdh.js +80 -0
- package/dist/src/bitgo/enterprise/enterprise.d.ts +64 -0
- package/dist/src/bitgo/enterprise/enterprise.d.ts.map +1 -0
- package/dist/src/bitgo/enterprise/enterprise.js +120 -0
- package/dist/src/bitgo/enterprise/enterprises.d.ts +25 -0
- package/dist/src/bitgo/enterprise/enterprises.d.ts.map +1 -0
- package/dist/src/bitgo/enterprise/enterprises.js +70 -0
- package/dist/src/bitgo/enterprise/iEnterprise.d.ts +15 -0
- package/dist/src/bitgo/enterprise/iEnterprise.d.ts.map +1 -0
- package/dist/src/bitgo/enterprise/iEnterprise.js +3 -0
- package/dist/src/bitgo/enterprise/iEnterprises.d.ts +10 -0
- package/dist/src/bitgo/enterprise/iEnterprises.d.ts.map +1 -0
- package/dist/src/bitgo/enterprise/iEnterprises.js +3 -0
- package/dist/src/bitgo/enterprise/index.d.ts +5 -0
- package/dist/src/bitgo/enterprise/index.d.ts.map +1 -0
- package/dist/src/bitgo/enterprise/index.js +17 -0
- package/dist/src/{v2 → bitgo}/environments.d.ts +0 -0
- package/dist/src/bitgo/environments.d.ts.map +1 -0
- package/dist/src/bitgo/environments.js +142 -0
- package/dist/src/bitgo/errors.d.ts +83 -0
- package/dist/src/bitgo/errors.d.ts.map +1 -0
- package/dist/src/bitgo/errors.js +163 -0
- package/dist/src/bitgo/index.d.ts +26 -0
- package/dist/src/bitgo/index.d.ts.map +1 -0
- package/dist/src/bitgo/index.js +51 -0
- package/dist/src/bitgo/internal/index.d.ts +3 -0
- package/dist/src/bitgo/internal/index.d.ts.map +1 -0
- package/dist/src/bitgo/internal/index.js +15 -0
- package/dist/src/bitgo/internal/internal.d.ts +19 -0
- package/dist/src/bitgo/internal/internal.d.ts.map +1 -0
- package/dist/src/bitgo/internal/internal.js +33 -0
- package/dist/src/bitgo/internal/keycard.d.ts +33 -0
- package/dist/src/bitgo/internal/keycard.d.ts.map +1 -0
- package/dist/src/bitgo/internal/keycard.js +304 -0
- package/dist/src/bitgo/keychain/iKeychains.d.ts +118 -0
- package/dist/src/bitgo/keychain/iKeychains.d.ts.map +1 -0
- package/dist/src/bitgo/keychain/iKeychains.js +10 -0
- package/dist/src/bitgo/keychain/index.d.ts +3 -0
- package/dist/src/bitgo/keychain/index.d.ts.map +1 -0
- package/dist/src/bitgo/keychain/index.js +15 -0
- package/dist/src/bitgo/keychain/keychains.d.ts +90 -0
- package/dist/src/bitgo/keychain/keychains.d.ts.map +1 -0
- package/dist/src/bitgo/keychain/keychains.js +280 -0
- package/dist/src/bitgo/market/iMarkets.d.ts +12 -0
- package/dist/src/bitgo/market/iMarkets.d.ts.map +1 -0
- package/dist/src/bitgo/market/iMarkets.js +3 -0
- package/dist/src/bitgo/market/index.d.ts +3 -0
- package/dist/src/bitgo/market/index.d.ts.map +1 -0
- package/dist/src/bitgo/market/index.js +15 -0
- package/dist/src/bitgo/market/markets.d.ts +29 -0
- package/dist/src/bitgo/market/markets.d.ts.map +1 -0
- package/dist/src/bitgo/market/markets.js +70 -0
- package/dist/src/bitgo/pendingApproval/iPendingApproval.d.ts +73 -0
- package/dist/src/bitgo/pendingApproval/iPendingApproval.d.ts.map +1 -0
- package/dist/src/bitgo/pendingApproval/iPendingApproval.js +28 -0
- package/dist/src/bitgo/pendingApproval/iPendingApprovals.d.ts +16 -0
- package/dist/src/bitgo/pendingApproval/iPendingApprovals.d.ts.map +1 -0
- package/dist/src/bitgo/pendingApproval/iPendingApprovals.js +3 -0
- package/dist/src/bitgo/pendingApproval/index.d.ts +5 -0
- package/dist/src/bitgo/pendingApproval/index.d.ts.map +1 -0
- package/dist/src/bitgo/pendingApproval/index.js +17 -0
- package/dist/src/bitgo/pendingApproval/pendingApproval.d.ts +99 -0
- package/dist/src/bitgo/pendingApproval/pendingApproval.d.ts.map +1 -0
- package/dist/src/bitgo/pendingApproval/pendingApproval.js +319 -0
- package/dist/src/bitgo/pendingApproval/pendingApprovals.d.ts +19 -0
- package/dist/src/bitgo/pendingApproval/pendingApprovals.d.ts.map +1 -0
- package/dist/src/bitgo/pendingApproval/pendingApprovals.js +76 -0
- package/dist/src/bitgo/recovery/index.d.ts +2 -0
- package/dist/src/bitgo/recovery/index.d.ts.map +1 -0
- package/dist/src/bitgo/recovery/index.js +14 -0
- package/dist/src/bitgo/recovery/initiate.d.ts +49 -0
- package/dist/src/bitgo/recovery/initiate.d.ts.map +1 -0
- package/dist/src/bitgo/recovery/initiate.js +119 -0
- package/dist/src/bitgo/trading/affirmation.d.ts +35 -0
- package/dist/src/bitgo/trading/affirmation.d.ts.map +1 -0
- package/dist/src/bitgo/trading/affirmation.js +53 -0
- package/dist/src/bitgo/trading/affirmations.d.ts +23 -0
- package/dist/src/bitgo/trading/affirmations.d.ts.map +1 -0
- package/dist/src/bitgo/trading/affirmations.js +45 -0
- package/dist/src/bitgo/trading/iAffirmation.d.ts +15 -0
- package/dist/src/bitgo/trading/iAffirmation.d.ts.map +1 -0
- package/dist/src/bitgo/trading/iAffirmation.js +13 -0
- package/dist/src/bitgo/trading/iAffirmations.d.ts +10 -0
- package/dist/src/bitgo/trading/iAffirmations.d.ts.map +1 -0
- package/dist/src/bitgo/trading/iAffirmations.js +3 -0
- package/dist/src/bitgo/trading/iSettlement.d.ts +25 -0
- package/dist/src/bitgo/trading/iSettlement.d.ts.map +1 -0
- package/dist/src/bitgo/trading/iSettlement.js +17 -0
- package/dist/src/bitgo/trading/iSettlements.d.ts +19 -0
- package/dist/src/bitgo/trading/iSettlements.d.ts.map +1 -0
- package/dist/src/bitgo/trading/iSettlements.js +3 -0
- package/dist/src/bitgo/trading/iTradingAccount.d.ts +41 -0
- package/dist/src/bitgo/trading/iTradingAccount.d.ts.map +1 -0
- package/dist/src/bitgo/trading/iTradingAccount.js +3 -0
- package/dist/src/bitgo/trading/iTradingPartner.d.ts +14 -0
- package/dist/src/bitgo/trading/iTradingPartner.d.ts.map +1 -0
- package/dist/src/bitgo/trading/iTradingPartner.js +17 -0
- package/dist/src/bitgo/trading/iTradingPartners.d.ts +15 -0
- package/dist/src/bitgo/trading/iTradingPartners.d.ts.map +1 -0
- package/dist/src/bitgo/trading/iTradingPartners.js +9 -0
- package/dist/src/bitgo/trading/index.d.ts +18 -0
- package/dist/src/bitgo/trading/index.d.ts.map +1 -0
- package/dist/src/bitgo/trading/index.js +30 -0
- package/dist/src/bitgo/trading/lock.d.ts +16 -0
- package/dist/src/bitgo/trading/lock.d.ts.map +1 -0
- package/dist/src/bitgo/trading/lock.js +12 -0
- package/dist/src/bitgo/trading/payload.d.ts +22 -0
- package/dist/src/bitgo/trading/payload.d.ts.map +1 -0
- package/dist/src/bitgo/trading/payload.js +3 -0
- package/dist/src/bitgo/trading/settlement.d.ts +16 -0
- package/dist/src/bitgo/trading/settlement.d.ts.map +1 -0
- package/dist/src/bitgo/trading/settlement.js +21 -0
- package/dist/src/bitgo/trading/settlements.d.ts +32 -0
- package/dist/src/bitgo/trading/settlements.d.ts.map +1 -0
- package/dist/src/bitgo/trading/settlements.js +61 -0
- package/dist/src/bitgo/trading/trade.d.ts +29 -0
- package/dist/src/bitgo/trading/trade.d.ts.map +1 -0
- package/dist/src/bitgo/trading/trade.js +11 -0
- package/dist/src/bitgo/trading/tradingAccount.d.ts +53 -0
- package/dist/src/bitgo/trading/tradingAccount.d.ts.map +1 -0
- package/dist/src/bitgo/trading/tradingAccount.js +127 -0
- package/dist/src/bitgo/trading/tradingPartner.d.ts +26 -0
- package/dist/src/bitgo/trading/tradingPartner.d.ts.map +1 -0
- package/dist/src/bitgo/trading/tradingPartner.js +31 -0
- package/dist/src/bitgo/trading/tradingPartners.d.ts +24 -0
- package/dist/src/bitgo/trading/tradingPartners.d.ts.map +1 -0
- package/dist/src/bitgo/trading/tradingPartners.js +32 -0
- package/dist/src/bitgo/tss/ecdsa/ecdsa.d.ts +35 -0
- package/dist/src/bitgo/tss/ecdsa/ecdsa.d.ts.map +1 -0
- package/dist/src/bitgo/tss/ecdsa/ecdsa.js +95 -0
- package/dist/src/bitgo/tss/ecdsa/index.d.ts +4 -0
- package/dist/src/bitgo/tss/ecdsa/index.d.ts.map +1 -0
- package/dist/src/bitgo/tss/ecdsa/index.js +26 -0
- package/dist/src/bitgo/tss/ecdsa/types.d.ts +30 -0
- package/dist/src/bitgo/tss/ecdsa/types.d.ts.map +1 -0
- package/dist/src/bitgo/tss/ecdsa/types.js +3 -0
- package/dist/src/bitgo/tss/eddsa/eddsa.d.ts +102 -0
- package/dist/src/bitgo/tss/eddsa/eddsa.d.ts.map +1 -0
- package/dist/src/bitgo/tss/eddsa/eddsa.js +256 -0
- package/dist/src/bitgo/tss/eddsa/index.d.ts +6 -0
- package/dist/src/bitgo/tss/eddsa/index.d.ts.map +1 -0
- package/dist/src/bitgo/tss/eddsa/index.js +37 -0
- package/dist/src/bitgo/tss/eddsa/types.d.ts +23 -0
- package/dist/src/bitgo/tss/eddsa/types.d.ts.map +1 -0
- package/dist/src/bitgo/tss/eddsa/types.js +3 -0
- package/dist/src/bitgo/tss/index.d.ts +6 -0
- package/dist/src/bitgo/tss/index.d.ts.map +1 -0
- package/dist/src/bitgo/tss/index.js +42 -0
- package/dist/src/bitgo/tss/types.d.ts +6 -0
- package/dist/src/bitgo/tss/types.d.ts.map +1 -0
- package/dist/src/bitgo/tss/types.js +10 -0
- package/dist/src/bitgo/types.d.ts +4 -0
- package/dist/src/bitgo/types.d.ts.map +1 -0
- package/dist/src/bitgo/types.js +3 -0
- package/dist/src/bitgo/utils/abstractUtxoCoinUtil.d.ts +6 -0
- package/dist/src/bitgo/utils/abstractUtxoCoinUtil.d.ts.map +1 -0
- package/dist/src/bitgo/utils/abstractUtxoCoinUtil.js +30 -0
- package/dist/src/bitgo/utils/blsUtils.d.ts +51 -0
- package/dist/src/bitgo/utils/blsUtils.d.ts.map +1 -0
- package/dist/src/bitgo/utils/blsUtils.js +166 -0
- package/dist/src/bitgo/utils/iBlsUtils.d.ts +14 -0
- package/dist/src/bitgo/utils/iBlsUtils.d.ts.map +1 -0
- package/dist/src/bitgo/utils/iBlsUtils.js +3 -0
- package/dist/src/bitgo/utils/index.d.ts +12 -0
- package/dist/src/bitgo/utils/index.d.ts.map +1 -0
- package/dist/src/bitgo/utils/index.js +37 -0
- package/dist/src/bitgo/utils/mpcUtils.d.ts +31 -0
- package/dist/src/bitgo/utils/mpcUtils.d.ts.map +1 -0
- package/dist/src/bitgo/utils/mpcUtils.js +55 -0
- package/dist/src/bitgo/utils/opengpgUtils.d.ts +51 -0
- package/dist/src/bitgo/utils/opengpgUtils.d.ts.map +1 -0
- package/dist/src/bitgo/utils/opengpgUtils.js +136 -0
- package/dist/src/bitgo/utils/promise-utils.d.ts +5 -0
- package/dist/src/bitgo/utils/promise-utils.d.ts.map +1 -0
- package/dist/src/bitgo/utils/promise-utils.js +12 -0
- package/dist/src/bitgo/utils/triple.d.ts +3 -0
- package/dist/src/bitgo/utils/triple.d.ts.map +1 -0
- package/dist/src/bitgo/utils/triple.js +8 -0
- package/dist/src/bitgo/utils/tss/eddsa/eddsa.d.ts +117 -0
- package/dist/src/bitgo/utils/tss/eddsa/eddsa.d.ts.map +1 -0
- package/dist/src/bitgo/utils/tss/eddsa/eddsa.js +351 -0
- package/dist/src/bitgo/utils/tss/eddsa/index.d.ts +5 -0
- package/dist/src/bitgo/utils/tss/eddsa/index.d.ts.map +1 -0
- package/dist/src/bitgo/utils/tss/eddsa/index.js +29 -0
- package/dist/src/bitgo/utils/tss/eddsa/types.d.ts +72 -0
- package/dist/src/bitgo/utils/tss/eddsa/types.d.ts.map +1 -0
- package/dist/src/bitgo/utils/tss/eddsa/types.js +10 -0
- package/dist/src/bitgo/utils/tss/index.d.ts +4 -0
- package/dist/src/bitgo/utils/tss/index.d.ts.map +1 -0
- package/dist/src/bitgo/utils/tss/index.js +29 -0
- package/dist/src/bitgo/utils/util.d.ts +77 -0
- package/dist/src/bitgo/utils/util.d.ts.map +1 -0
- package/dist/src/bitgo/utils/util.js +198 -0
- package/dist/src/bitgo/wallet/iWallet.d.ts +510 -0
- package/dist/src/bitgo/wallet/iWallet.d.ts.map +1 -0
- package/dist/src/bitgo/wallet/iWallet.js +3 -0
- package/dist/src/bitgo/wallet/iWallets.d.ts +105 -0
- package/dist/src/bitgo/wallet/iWallets.d.ts.map +1 -0
- package/dist/src/bitgo/wallet/iWallets.js +3 -0
- package/dist/src/bitgo/wallet/index.d.ts +5 -0
- package/dist/src/bitgo/wallet/index.d.ts.map +1 -0
- package/dist/src/bitgo/wallet/index.js +17 -0
- package/dist/src/bitgo/wallet/wallet.d.ts +650 -0
- package/dist/src/bitgo/wallet/wallet.d.ts.map +1 -0
- package/dist/src/bitgo/wallet/wallet.js +2039 -0
- package/dist/src/bitgo/wallet/wallets.d.ts +134 -0
- package/dist/src/bitgo/wallet/wallets.d.ts.map +1 -0
- package/dist/src/bitgo/wallet/wallets.js +605 -0
- package/dist/src/bitgo/webhook/iWebhooks.d.ts +26 -0
- package/dist/src/bitgo/webhook/iWebhooks.d.ts.map +1 -0
- package/dist/src/bitgo/webhook/iWebhooks.js +3 -0
- package/dist/src/bitgo/webhook/index.d.ts +3 -0
- package/dist/src/bitgo/webhook/index.d.ts.map +1 -0
- package/dist/src/bitgo/webhook/index.js +15 -0
- package/dist/src/bitgo/webhook/webhooks.d.ts +43 -0
- package/dist/src/bitgo/webhook/webhooks.d.ts.map +1 -0
- package/dist/src/bitgo/webhook/webhooks.js +102 -0
- package/dist/src/{bigojsError.d.ts → bitgojsError.d.ts} +1 -1
- package/dist/src/bitgojsError.d.ts.map +1 -0
- package/dist/src/bitgojsError.js +11 -0
- package/dist/src/common.d.ts +1 -1
- package/dist/src/common.d.ts.map +1 -1
- package/dist/src/common.js +3 -3
- package/dist/src/index.d.ts +4 -2
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +6 -5
- package/dist/tsconfig.tsbuildinfo +3501 -150
- package/package.json +28 -4
- package/CHANGELOG.md +0 -8
- package/dist/src/bigojsError.d.ts.map +0 -1
- package/dist/src/bigojsError.js +0 -11
- package/dist/src/v2/environments.d.ts.map +0 -1
- package/dist/src/v2/environments.js +0 -142
- package/dist/src/v2/index.d.ts +0 -3
- package/dist/src/v2/index.d.ts.map +0 -1
- package/dist/src/v2/types.d.ts +0 -2
- package/dist/src/v2/types.d.ts.map +0 -1
- package/dist/src/v2/types.js +0 -3
|
@@ -196,9 +196,9 @@
|
|
|
196
196
|
"signature": "506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e",
|
|
197
197
|
"affectsGlobalScope": true
|
|
198
198
|
},
|
|
199
|
-
"../src/
|
|
199
|
+
"../src/bitgojserror.ts": {
|
|
200
200
|
"version": "c52a0da37f3e3da6039848cc58ccd652a3b7624c6caf8f0629ec1726e4a4cf9b",
|
|
201
|
-
"signature": "
|
|
201
|
+
"signature": "9c4ff7caf5144cf3cd1bd935cc536eaaf26db56385bf72c2b192398539deb6b9",
|
|
202
202
|
"affectsGlobalScope": false
|
|
203
203
|
},
|
|
204
204
|
"../../../node_modules/@types/lodash/common/common.d.ts": {
|
|
@@ -266,56 +266,6 @@
|
|
|
266
266
|
"signature": "0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8",
|
|
267
267
|
"affectsGlobalScope": true
|
|
268
268
|
},
|
|
269
|
-
"../src/v2/types.ts": {
|
|
270
|
-
"version": "3adda9855f9b4f2baebfe574ec01c584e90910beb25b5a8b301406e9aed53589",
|
|
271
|
-
"signature": "be30987644784c3fab31fd62e3361186a4dd24bd66d7e51b34e77a5f47f42b4e",
|
|
272
|
-
"affectsGlobalScope": false
|
|
273
|
-
},
|
|
274
|
-
"../src/v2/environments.ts": {
|
|
275
|
-
"version": "b6aa0ae0897f0396159323d37981337d61e04ec494753bd4c1711864409115d4",
|
|
276
|
-
"signature": "77c0096e2419b04036cac2fbff4d2ba95a097a01df328bb2b20c4ccc51251f00",
|
|
277
|
-
"affectsGlobalScope": false
|
|
278
|
-
},
|
|
279
|
-
"../src/v2/index.ts": {
|
|
280
|
-
"version": "cccb1b19ccaa2081fb5ec90424a8a6a5a6638bff0c85b32dac403f67d702c3e9",
|
|
281
|
-
"signature": "74509f8a70a8b22b270b84b4de334db5ab9dfd4b33eae21418dd6a0144828517",
|
|
282
|
-
"affectsGlobalScope": false
|
|
283
|
-
},
|
|
284
|
-
"../src/common.ts": {
|
|
285
|
-
"version": "13d99fbaac66c112f33a36e69334a096487b3a4de5bfc75e1a638d465dea6ebf",
|
|
286
|
-
"signature": "8520524cc2b6a69a6a8d874b784233a0f163d0d410da6f5912c799b2f7240cda",
|
|
287
|
-
"affectsGlobalScope": false
|
|
288
|
-
},
|
|
289
|
-
"../src/index.ts": {
|
|
290
|
-
"version": "7c2f0f760dcd9b0a91e41e26b6359e279b8c74933c538652a774bd502d0267f4",
|
|
291
|
-
"signature": "73968bff060adc9004565476c8f1be7217ef939fc2f83e9e6fec37bdf01d8f35",
|
|
292
|
-
"affectsGlobalScope": false
|
|
293
|
-
},
|
|
294
|
-
"../../../node_modules/bignumber.js/bignumber.d.ts": {
|
|
295
|
-
"version": "1d7d9e42cb2cc36dfc7ce35755ce67d5ff0f4a2ef72d3019f4c461bfd22123da",
|
|
296
|
-
"signature": "1d7d9e42cb2cc36dfc7ce35755ce67d5ff0f4a2ef72d3019f4c461bfd22123da",
|
|
297
|
-
"affectsGlobalScope": false
|
|
298
|
-
},
|
|
299
|
-
"../../../types/bignumber.js/index.d.ts": {
|
|
300
|
-
"version": "7440b4a4b965c74745cbbafdf32366de82b7dea1bdb85a472770a888d5201ff7",
|
|
301
|
-
"signature": "7440b4a4b965c74745cbbafdf32366de82b7dea1bdb85a472770a888d5201ff7",
|
|
302
|
-
"affectsGlobalScope": false
|
|
303
|
-
},
|
|
304
|
-
"../../../types/express/index.d.ts": {
|
|
305
|
-
"version": "70f0ddc58f8b7283e1cffa39863938ab694e14fb3dcf0cac4d78b2d002f91255",
|
|
306
|
-
"signature": "70f0ddc58f8b7283e1cffa39863938ab694e14fb3dcf0cac4d78b2d002f91255",
|
|
307
|
-
"affectsGlobalScope": true
|
|
308
|
-
},
|
|
309
|
-
"../../../node_modules/should/should.d.ts": {
|
|
310
|
-
"version": "79da89e1b61cecf107f52a0c2578f31528bc0accdc73bec7325f468a5706a559",
|
|
311
|
-
"signature": "79da89e1b61cecf107f52a0c2578f31528bc0accdc73bec7325f468a5706a559",
|
|
312
|
-
"affectsGlobalScope": true
|
|
313
|
-
},
|
|
314
|
-
"../../../types/should-sinon/index.d.ts": {
|
|
315
|
-
"version": "7ecc65228508df150b89095bee857e6306f44fa179c9f625613b1cef9e0c1883",
|
|
316
|
-
"signature": "7ecc65228508df150b89095bee857e6306f44fa179c9f625613b1cef9e0c1883",
|
|
317
|
-
"affectsGlobalScope": false
|
|
318
|
-
},
|
|
319
269
|
"../../../node_modules/@types/node/assert.d.ts": {
|
|
320
270
|
"version": "0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380",
|
|
321
271
|
"signature": "0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380",
|
|
@@ -571,19 +521,1079 @@
|
|
|
571
521
|
"signature": "9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8",
|
|
572
522
|
"affectsGlobalScope": false
|
|
573
523
|
},
|
|
574
|
-
"../../../node_modules
|
|
575
|
-
"version": "
|
|
576
|
-
"signature": "
|
|
524
|
+
"../../../node_modules/bip32/types/bip32.d.ts": {
|
|
525
|
+
"version": "25d0893cf285d63492c8a0506bec26ac7e4790d46b5c582a89dd5ab9bc248c7a",
|
|
526
|
+
"signature": "25d0893cf285d63492c8a0506bec26ac7e4790d46b5c582a89dd5ab9bc248c7a",
|
|
527
|
+
"affectsGlobalScope": false
|
|
528
|
+
},
|
|
529
|
+
"../../../node_modules/bip32/types/index.d.ts": {
|
|
530
|
+
"version": "f74fee4ed5f77ed9e8ee0b2b6105cd5f0f123b64bbeeee7be551ec65a89a0ef4",
|
|
531
|
+
"signature": "f74fee4ed5f77ed9e8ee0b2b6105cd5f0f123b64bbeeee7be551ec65a89a0ef4",
|
|
532
|
+
"affectsGlobalScope": false
|
|
533
|
+
},
|
|
534
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts": {
|
|
535
|
+
"version": "692cce8a36696e9df80910c05ae3b34340c278bbba03701a9ae92ae038663824",
|
|
536
|
+
"signature": "692cce8a36696e9df80910c05ae3b34340c278bbba03701a9ae92ae038663824",
|
|
537
|
+
"affectsGlobalScope": false
|
|
538
|
+
},
|
|
539
|
+
"../../../node_modules/bitcoinjs-lib/types/address.d.ts": {
|
|
540
|
+
"version": "035fd4564409153531cc683821b48048fd01982a8522c120b5a17f9a6320a229",
|
|
541
|
+
"signature": "035fd4564409153531cc683821b48048fd01982a8522c120b5a17f9a6320a229",
|
|
542
|
+
"affectsGlobalScope": false
|
|
543
|
+
},
|
|
544
|
+
"../../../node_modules/bitcoinjs-lib/types/classify.d.ts": {
|
|
545
|
+
"version": "1e9d8ebf3dfc7a42b29ea823ebbc333e6f37c6a890d5b13cc67958870c066fb7",
|
|
546
|
+
"signature": "1e9d8ebf3dfc7a42b29ea823ebbc333e6f37c6a890d5b13cc67958870c066fb7",
|
|
547
|
+
"affectsGlobalScope": false
|
|
548
|
+
},
|
|
549
|
+
"../../../node_modules/bitcoinjs-lib/types/crypto.d.ts": {
|
|
550
|
+
"version": "efa5b896b87da636844d0ab1d49ebf8951c07cd3814f664ad820af582fec60d7",
|
|
551
|
+
"signature": "efa5b896b87da636844d0ab1d49ebf8951c07cd3814f664ad820af582fec60d7",
|
|
552
|
+
"affectsGlobalScope": false
|
|
553
|
+
},
|
|
554
|
+
"../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts": {
|
|
555
|
+
"version": "6d9f651e04cb8c78f8f2409978a1f137925a75c53561709a6cfd85d6a3bd1655",
|
|
556
|
+
"signature": "6d9f651e04cb8c78f8f2409978a1f137925a75c53561709a6cfd85d6a3bd1655",
|
|
557
|
+
"affectsGlobalScope": false
|
|
558
|
+
},
|
|
559
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts": {
|
|
560
|
+
"version": "a29a7b9ade7876d0f527b716a5bc5c7bc84554d155577020441f2d3c735589be",
|
|
561
|
+
"signature": "a29a7b9ade7876d0f527b716a5bc5c7bc84554d155577020441f2d3c735589be",
|
|
562
|
+
"affectsGlobalScope": false
|
|
563
|
+
},
|
|
564
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts": {
|
|
565
|
+
"version": "9cd42ff83837551961fa8788f14bd3498306fb2c1d35358f2b6bf3af05bf0890",
|
|
566
|
+
"signature": "9cd42ff83837551961fa8788f14bd3498306fb2c1d35358f2b6bf3af05bf0890",
|
|
567
|
+
"affectsGlobalScope": false
|
|
568
|
+
},
|
|
569
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts": {
|
|
570
|
+
"version": "5e51773d5624b8c871d8d140c88f944466338673fbc60ac4bf409eb60e6665cf",
|
|
571
|
+
"signature": "5e51773d5624b8c871d8d140c88f944466338673fbc60ac4bf409eb60e6665cf",
|
|
572
|
+
"affectsGlobalScope": false
|
|
573
|
+
},
|
|
574
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts": {
|
|
575
|
+
"version": "39b10cd95b70bbdc1cf8c832002618c3f81cd980438fe5e3694d99286ef90911",
|
|
576
|
+
"signature": "39b10cd95b70bbdc1cf8c832002618c3f81cd980438fe5e3694d99286ef90911",
|
|
577
|
+
"affectsGlobalScope": false
|
|
578
|
+
},
|
|
579
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts": {
|
|
580
|
+
"version": "95244212208717085038a74378ea2a03e49c06a3a195b2826c01c978f14684c2",
|
|
581
|
+
"signature": "95244212208717085038a74378ea2a03e49c06a3a195b2826c01c978f14684c2",
|
|
582
|
+
"affectsGlobalScope": false
|
|
583
|
+
},
|
|
584
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts": {
|
|
585
|
+
"version": "c91084ba90468037b6d266f3cae698aaa76c0864cf076aa099d981d847b74c2d",
|
|
586
|
+
"signature": "c91084ba90468037b6d266f3cae698aaa76c0864cf076aa099d981d847b74c2d",
|
|
587
|
+
"affectsGlobalScope": false
|
|
588
|
+
},
|
|
589
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts": {
|
|
590
|
+
"version": "dc58c9eb8817b8c46f40712df9e588c0c70357931f5ebebb3aa445949de993c8",
|
|
591
|
+
"signature": "dc58c9eb8817b8c46f40712df9e588c0c70357931f5ebebb3aa445949de993c8",
|
|
592
|
+
"affectsGlobalScope": false
|
|
593
|
+
},
|
|
594
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts": {
|
|
595
|
+
"version": "7362eeca79ce50eb72b2a0149e323f6d64daf4fbc8067592310859622c3dbcfe",
|
|
596
|
+
"signature": "7362eeca79ce50eb72b2a0149e323f6d64daf4fbc8067592310859622c3dbcfe",
|
|
597
|
+
"affectsGlobalScope": false
|
|
598
|
+
},
|
|
599
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts": {
|
|
600
|
+
"version": "8c0a305a7b10513d9d07bf739456bf9845bd4336027c85442b674a417facb57a",
|
|
601
|
+
"signature": "8c0a305a7b10513d9d07bf739456bf9845bd4336027c85442b674a417facb57a",
|
|
602
|
+
"affectsGlobalScope": false
|
|
603
|
+
},
|
|
604
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts": {
|
|
605
|
+
"version": "a0f499bc2d4bee1d480dc670db36c4656beac3e93cabc68c27625484f549484d",
|
|
606
|
+
"signature": "a0f499bc2d4bee1d480dc670db36c4656beac3e93cabc68c27625484f549484d",
|
|
607
|
+
"affectsGlobalScope": false
|
|
608
|
+
},
|
|
609
|
+
"../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts": {
|
|
610
|
+
"version": "c139fc3a11a170f34d076d65e40f7a52357a688a0507ba6b20d6fe276cd24c8a",
|
|
611
|
+
"signature": "c139fc3a11a170f34d076d65e40f7a52357a688a0507ba6b20d6fe276cd24c8a",
|
|
612
|
+
"affectsGlobalScope": false
|
|
613
|
+
},
|
|
614
|
+
"../../../node_modules/bitcoinjs-lib/types/script_number.d.ts": {
|
|
615
|
+
"version": "973d36af083ce019e3c38b99ca43cb6815b47082cf1e07215387df336192f447",
|
|
616
|
+
"signature": "973d36af083ce019e3c38b99ca43cb6815b47082cf1e07215387df336192f447",
|
|
617
|
+
"affectsGlobalScope": false
|
|
618
|
+
},
|
|
619
|
+
"../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts": {
|
|
620
|
+
"version": "617012176a8cb5be290ae89040aac88ec74321c2a8b984f01a7ba6eb9a2eddc2",
|
|
621
|
+
"signature": "617012176a8cb5be290ae89040aac88ec74321c2a8b984f01a7ba6eb9a2eddc2",
|
|
622
|
+
"affectsGlobalScope": false
|
|
623
|
+
},
|
|
624
|
+
"../../../node_modules/bitcoinjs-lib/types/script.d.ts": {
|
|
625
|
+
"version": "452cea0fd78e7cc56bc4d54979f79625f50f0ee33213c51b8d361dca80dc9175",
|
|
626
|
+
"signature": "452cea0fd78e7cc56bc4d54979f79625f50f0ee33213c51b8d361dca80dc9175",
|
|
627
|
+
"affectsGlobalScope": false
|
|
628
|
+
},
|
|
629
|
+
"../../../node_modules/bitcoinjs-lib/types/taproot.d.ts": {
|
|
630
|
+
"version": "b63ba9f527c74718667338d6ca3ba3b35429500f7d63196e54d86a4ef28b36b4",
|
|
631
|
+
"signature": "b63ba9f527c74718667338d6ca3ba3b35429500f7d63196e54d86a4ef28b36b4",
|
|
632
|
+
"affectsGlobalScope": false
|
|
633
|
+
},
|
|
634
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts": {
|
|
635
|
+
"version": "fc2aced12725e81bbdb9e55a0efe1060cd4b6bbb6d1a5a23a09236a18c2d2323",
|
|
636
|
+
"signature": "fc2aced12725e81bbdb9e55a0efe1060cd4b6bbb6d1a5a23a09236a18c2d2323",
|
|
637
|
+
"affectsGlobalScope": false
|
|
638
|
+
},
|
|
639
|
+
"../../../node_modules/bitcoinjs-lib/types/block.d.ts": {
|
|
640
|
+
"version": "7340d9ad1f3f55e7be3a85a151ef25d7a8c0205904519940c9dcea0f61cb3292",
|
|
641
|
+
"signature": "7340d9ad1f3f55e7be3a85a151ef25d7a8c0205904519940c9dcea0f61cb3292",
|
|
642
|
+
"affectsGlobalScope": false
|
|
643
|
+
},
|
|
644
|
+
"../../../node_modules/bip174/src/lib/interfaces.d.ts": {
|
|
645
|
+
"version": "28fb03121a168f316264faaa3904381a3e902e008ab2e4350aefa5d9ccc48772",
|
|
646
|
+
"signature": "28fb03121a168f316264faaa3904381a3e902e008ab2e4350aefa5d9ccc48772",
|
|
647
|
+
"affectsGlobalScope": false
|
|
648
|
+
},
|
|
649
|
+
"../../../node_modules/bip174/src/lib/psbt.d.ts": {
|
|
650
|
+
"version": "3da723823982206178406b7c2b8570152c6347a047fa7e59fa46011d10ac26b6",
|
|
651
|
+
"signature": "3da723823982206178406b7c2b8570152c6347a047fa7e59fa46011d10ac26b6",
|
|
652
|
+
"affectsGlobalScope": false
|
|
653
|
+
},
|
|
654
|
+
"../../../node_modules/bitcoinjs-lib/types/psbt.d.ts": {
|
|
655
|
+
"version": "bddbf55f3238e6865800b6be9b1f7c6ecdd5049607109b35d0af2a3c4e24f48d",
|
|
656
|
+
"signature": "bddbf55f3238e6865800b6be9b1f7c6ecdd5049607109b35d0af2a3c4e24f48d",
|
|
657
|
+
"affectsGlobalScope": false
|
|
658
|
+
},
|
|
659
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts": {
|
|
660
|
+
"version": "0354d500ee48bde1e4112b767fa58fe56eb9a790204aa0113ffd7aa8a046e01c",
|
|
661
|
+
"signature": "0354d500ee48bde1e4112b767fa58fe56eb9a790204aa0113ffd7aa8a046e01c",
|
|
662
|
+
"affectsGlobalScope": false
|
|
663
|
+
},
|
|
664
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts": {
|
|
665
|
+
"version": "9e278c765662847ae3711e917bce92d00fdb3724bf54cd3fcef5cb06039bd810",
|
|
666
|
+
"signature": "9e278c765662847ae3711e917bce92d00fdb3724bf54cd3fcef5cb06039bd810",
|
|
667
|
+
"affectsGlobalScope": false
|
|
668
|
+
},
|
|
669
|
+
"../../utxo-lib/dist/src/networks.d.ts": {
|
|
670
|
+
"version": "3989b1217696c364f0515520fdb66396423c4a72ec38395e415b6e2909cdac30",
|
|
671
|
+
"signature": "3989b1217696c364f0515520fdb66396423c4a72ec38395e415b6e2909cdac30",
|
|
672
|
+
"affectsGlobalScope": false
|
|
673
|
+
},
|
|
674
|
+
"../../utxo-lib/dist/src/addressformat.d.ts": {
|
|
675
|
+
"version": "a65546ad2f2624eb4cb1b91f2d65a1c8b36f23235f3218d890755fe122df37a8",
|
|
676
|
+
"signature": "a65546ad2f2624eb4cb1b91f2d65a1c8b36f23235f3218d890755fe122df37a8",
|
|
677
|
+
"affectsGlobalScope": false
|
|
678
|
+
},
|
|
679
|
+
"../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts": {
|
|
680
|
+
"version": "fe89f6decc8896721129284b4e3b1189f5f42b9d16bed836873faeae101014b1",
|
|
681
|
+
"signature": "fe89f6decc8896721129284b4e3b1189f5f42b9d16bed836873faeae101014b1",
|
|
682
|
+
"affectsGlobalScope": false
|
|
683
|
+
},
|
|
684
|
+
"../../utxo-lib/dist/src/bitgo/bitcoincash/index.d.ts": {
|
|
685
|
+
"version": "b838405edd6c2e68b261abb25dcb55bd223a310541016208ee1b93ba179dfb64",
|
|
686
|
+
"signature": "b838405edd6c2e68b261abb25dcb55bd223a310541016208ee1b93ba179dfb64",
|
|
687
|
+
"affectsGlobalScope": false
|
|
688
|
+
},
|
|
689
|
+
"../../utxo-lib/dist/src/bitgo/keyutil.d.ts": {
|
|
690
|
+
"version": "45b32ec049b993b86438d72c69a89297edde3ec1ecf0fd25c22c39aec9e7ec32",
|
|
691
|
+
"signature": "45b32ec049b993b86438d72c69a89297edde3ec1ecf0fd25c22c39aec9e7ec32",
|
|
692
|
+
"affectsGlobalScope": false
|
|
693
|
+
},
|
|
694
|
+
"../../utxo-lib/dist/src/bitgo/nonstandardhalfsigned.d.ts": {
|
|
695
|
+
"version": "770ba645782e35f9931fc9480d101c70071ff454c1e2cb44bbc5748acd970359",
|
|
696
|
+
"signature": "770ba645782e35f9931fc9480d101c70071ff454c1e2cb44bbc5748acd970359",
|
|
697
|
+
"affectsGlobalScope": false
|
|
698
|
+
},
|
|
699
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts": {
|
|
700
|
+
"version": "b75907349e7621c0af4b0725cd272038d086e879cb5db399e278c5b5ef7f9a7d",
|
|
701
|
+
"signature": "b75907349e7621c0af4b0725cd272038d086e879cb5db399e278c5b5ef7f9a7d",
|
|
702
|
+
"affectsGlobalScope": false
|
|
703
|
+
},
|
|
704
|
+
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts": {
|
|
705
|
+
"version": "5d9e513b609f35338bbf8cc5fd267e87a22a6841d7b51155933a6397274be0cd",
|
|
706
|
+
"signature": "5d9e513b609f35338bbf8cc5fd267e87a22a6841d7b51155933a6397274be0cd",
|
|
707
|
+
"affectsGlobalScope": false
|
|
708
|
+
},
|
|
709
|
+
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts": {
|
|
710
|
+
"version": "c80a3282e2f7468049fc54772a381ef4253ec271a07a4a1eb0207444611244b2",
|
|
711
|
+
"signature": "c80a3282e2f7468049fc54772a381ef4253ec271a07a4a1eb0207444611244b2",
|
|
712
|
+
"affectsGlobalScope": false
|
|
713
|
+
},
|
|
714
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts": {
|
|
715
|
+
"version": "7d07e12a150bd9cc9b2b6b5cb19b617592765c7985f9ea44c190aa2ea4b13d6d",
|
|
716
|
+
"signature": "7d07e12a150bd9cc9b2b6b5cb19b617592765c7985f9ea44c190aa2ea4b13d6d",
|
|
717
|
+
"affectsGlobalScope": false
|
|
718
|
+
},
|
|
719
|
+
"../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts": {
|
|
720
|
+
"version": "94c380303f397e6b7b755a34587e5c1fb9cbd2cab71c18f2eb92eb03dcfdda51",
|
|
721
|
+
"signature": "94c380303f397e6b7b755a34587e5c1fb9cbd2cab71c18f2eb92eb03dcfdda51",
|
|
722
|
+
"affectsGlobalScope": false
|
|
723
|
+
},
|
|
724
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts": {
|
|
725
|
+
"version": "bdbc1fe8fed03ae6acf7274328e83816c8aba843b7734990c493ec6d452f375b",
|
|
726
|
+
"signature": "bdbc1fe8fed03ae6acf7274328e83816c8aba843b7734990c493ec6d452f375b",
|
|
727
|
+
"affectsGlobalScope": false
|
|
728
|
+
},
|
|
729
|
+
"../../utxo-lib/dist/src/bitgo/dash/dashtransactionbuilder.d.ts": {
|
|
730
|
+
"version": "783452fbde062c5f5659db5e53f728e3fec8c3fe2883c846771ad8c3b8d54b58",
|
|
731
|
+
"signature": "783452fbde062c5f5659db5e53f728e3fec8c3fe2883c846771ad8c3b8d54b58",
|
|
732
|
+
"affectsGlobalScope": false
|
|
733
|
+
},
|
|
734
|
+
"../../utxo-lib/dist/src/bitgo/dash/index.d.ts": {
|
|
735
|
+
"version": "574eb3378daa80e1fdeb1548684419b9953ffc12df979e7cc2bfb831f5fd40b9",
|
|
736
|
+
"signature": "574eb3378daa80e1fdeb1548684419b9953ffc12df979e7cc2bfb831f5fd40b9",
|
|
737
|
+
"affectsGlobalScope": false
|
|
738
|
+
},
|
|
739
|
+
"../../utxo-lib/dist/src/bitgo/signature.d.ts": {
|
|
740
|
+
"version": "337a230c1ee72b89fadd200d272073004103a902a1325e224eaaf913493ffa07",
|
|
741
|
+
"signature": "337a230c1ee72b89fadd200d272073004103a902a1325e224eaaf913493ffa07",
|
|
742
|
+
"affectsGlobalScope": false
|
|
743
|
+
},
|
|
744
|
+
"../../utxo-lib/dist/src/bitgo/transaction.d.ts": {
|
|
745
|
+
"version": "caa570ba6cc0cd7c09c4746d1784eaae721ee0d4a84baf9f417656bd3478c8c6",
|
|
746
|
+
"signature": "caa570ba6cc0cd7c09c4746d1784eaae721ee0d4a84baf9f417656bd3478c8c6",
|
|
747
|
+
"affectsGlobalScope": false
|
|
748
|
+
},
|
|
749
|
+
"../../utxo-lib/dist/src/bitgo/unspent.d.ts": {
|
|
750
|
+
"version": "c6d3f3f9e408cfa906a40ff74613d18ad3d1067e1ab7c5503164c6304d7c29ca",
|
|
751
|
+
"signature": "c6d3f3f9e408cfa906a40ff74613d18ad3d1067e1ab7c5503164c6304d7c29ca",
|
|
752
|
+
"affectsGlobalScope": false
|
|
753
|
+
},
|
|
754
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts": {
|
|
755
|
+
"version": "0d8d863dc5109215a9abfd16b17d7425771b10e876c14dac2826279e184d6cc2",
|
|
756
|
+
"signature": "0d8d863dc5109215a9abfd16b17d7425771b10e876c14dac2826279e184d6cc2",
|
|
757
|
+
"affectsGlobalScope": false
|
|
758
|
+
},
|
|
759
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletunspentsigner.d.ts": {
|
|
760
|
+
"version": "baa0a6e0935d6faadc282ed9be3766ea3188439680c5c5abd5ab6335287ba16d",
|
|
761
|
+
"signature": "baa0a6e0935d6faadc282ed9be3766ea3188439680c5c5abd5ab6335287ba16d",
|
|
762
|
+
"affectsGlobalScope": false
|
|
763
|
+
},
|
|
764
|
+
"../../utxo-lib/dist/src/bitgo/wallet/unspent.d.ts": {
|
|
765
|
+
"version": "0c3690f41f11876e5682dbfe24dd9a40f2c7cd6fdf1426c6eaebf7532fcbeb15",
|
|
766
|
+
"signature": "0c3690f41f11876e5682dbfe24dd9a40f2c7cd6fdf1426c6eaebf7532fcbeb15",
|
|
767
|
+
"affectsGlobalScope": false
|
|
768
|
+
},
|
|
769
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletscripts.d.ts": {
|
|
770
|
+
"version": "e8433a064976c584a4a691556f442e8282eec9e679828de9ed804ea0ceda38c3",
|
|
771
|
+
"signature": "e8433a064976c584a4a691556f442e8282eec9e679828de9ed804ea0ceda38c3",
|
|
772
|
+
"affectsGlobalScope": false
|
|
773
|
+
},
|
|
774
|
+
"../../utxo-lib/dist/src/bitgo/wallet/index.d.ts": {
|
|
775
|
+
"version": "6cb001d134345712b1ab8ee294dc16685d1f5b248802a7223b7e47e4332655fc",
|
|
776
|
+
"signature": "6cb001d134345712b1ab8ee294dc16685d1f5b248802a7223b7e47e4332655fc",
|
|
777
|
+
"affectsGlobalScope": false
|
|
778
|
+
},
|
|
779
|
+
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts": {
|
|
780
|
+
"version": "11610e3b4303ccfa245e74447ea6821de40ce9691f2a653c1424a4b7c2bdd64c",
|
|
781
|
+
"signature": "11610e3b4303ccfa245e74447ea6821de40ce9691f2a653c1424a4b7c2bdd64c",
|
|
782
|
+
"affectsGlobalScope": false
|
|
783
|
+
},
|
|
784
|
+
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransactionbuilder.d.ts": {
|
|
785
|
+
"version": "5ab36158c4f53de85c28c91d33cc78f66248b2ce09456404b647ed822eb211fa",
|
|
786
|
+
"signature": "5ab36158c4f53de85c28c91d33cc78f66248b2ce09456404b647ed822eb211fa",
|
|
787
|
+
"affectsGlobalScope": false
|
|
788
|
+
},
|
|
789
|
+
"../../utxo-lib/dist/src/bitgo/zcash/index.d.ts": {
|
|
790
|
+
"version": "fd88385eddbc39f5ed5e075ba79916a499d1f54c3af35f673091c7560fca2d73",
|
|
791
|
+
"signature": "fd88385eddbc39f5ed5e075ba79916a499d1f54c3af35f673091c7560fca2d73",
|
|
792
|
+
"affectsGlobalScope": false
|
|
793
|
+
},
|
|
794
|
+
"../../utxo-lib/dist/src/bitgo/index.d.ts": {
|
|
795
|
+
"version": "8a2d735726cbfe144441cb7784c99088b278a98a3c323012dbe0e53d17fe3104",
|
|
796
|
+
"signature": "8a2d735726cbfe144441cb7784c99088b278a98a3c323012dbe0e53d17fe3104",
|
|
797
|
+
"affectsGlobalScope": false
|
|
798
|
+
},
|
|
799
|
+
"../../utxo-lib/dist/src/address.d.ts": {
|
|
800
|
+
"version": "35b4034b25c8d254cff12177c18f5112a878d9fec4b2149ed677bff381b2819d",
|
|
801
|
+
"signature": "35b4034b25c8d254cff12177c18f5112a878d9fec4b2149ed677bff381b2819d",
|
|
802
|
+
"affectsGlobalScope": false
|
|
803
|
+
},
|
|
804
|
+
"../../utxo-lib/dist/src/index.d.ts": {
|
|
805
|
+
"version": "e5fcb871ede087c010863ffe1368f2d08dcf222bdfc56e70df740444b8fc8112",
|
|
806
|
+
"signature": "e5fcb871ede087c010863ffe1368f2d08dcf222bdfc56e70df740444b8fc8112",
|
|
807
|
+
"affectsGlobalScope": false
|
|
808
|
+
},
|
|
809
|
+
"../src/bitgo/types.ts": {
|
|
810
|
+
"version": "651a757b4950d14f779350e604641b5b25567f22bbc372408de10591b1fc6dd1",
|
|
811
|
+
"signature": "7f7cd3f3eb5f2bbe58fd251ed4b0cb13dbf254bd0e8e9c1ae724b173b7737234",
|
|
812
|
+
"affectsGlobalScope": false
|
|
813
|
+
},
|
|
814
|
+
"../src/bitgo/bitcoin.ts": {
|
|
815
|
+
"version": "bea0a45f2acfce2c1b3e2a871376685ba6fb57ed0c0cffefe3f89b4667839ba5",
|
|
816
|
+
"signature": "c595f57d9ff0e93c9dc1734a982810723654841410600f64eec0d93d982d00f1",
|
|
817
|
+
"affectsGlobalScope": false
|
|
818
|
+
},
|
|
819
|
+
"../src/account-lib/mpc/curves/basecurve.ts": {
|
|
820
|
+
"version": "b62ad1ebaa15dbfa8211379d331152151492a09edb16f41c747f064fbb980937",
|
|
821
|
+
"signature": "5c3fe43b450c5a087eb70cc83a627eb12c6a035bc19eddf16c5d13a2ccb59bfd",
|
|
822
|
+
"affectsGlobalScope": false
|
|
823
|
+
},
|
|
824
|
+
"../src/account-lib/mpc/util.ts": {
|
|
825
|
+
"version": "e788dba33b9155611d8fcc23921de405048dd6a5b4f8173e1c6a192a17a6a687",
|
|
826
|
+
"signature": "94798eae7c5163883df287bdcbd55929cb84f4bdda73512ac47fd78484ac1c98",
|
|
827
|
+
"affectsGlobalScope": false
|
|
828
|
+
},
|
|
829
|
+
"../src/account-lib/mpc/curves/ed25519.ts": {
|
|
830
|
+
"version": "ba06effecd06740fcde7b9d593a29c8ad5ce46801964a44d449ddb4f724891ed",
|
|
831
|
+
"signature": "8e6269725df9cace40beb956f1df4d0269d692f40ba895b00a16b6fa1faf591e",
|
|
832
|
+
"affectsGlobalScope": false
|
|
833
|
+
},
|
|
834
|
+
"../../../node_modules/@noble/secp256k1/lib/index.d.ts": {
|
|
835
|
+
"version": "ade50366c9059eb4f69a2a0fb9d12cff0b1ecb39e448f689cae4dc50b9280ca3",
|
|
836
|
+
"signature": "ade50366c9059eb4f69a2a0fb9d12cff0b1ecb39e448f689cae4dc50b9280ca3",
|
|
837
|
+
"affectsGlobalScope": false
|
|
838
|
+
},
|
|
839
|
+
"../src/account-lib/mpc/curves/secp256k1.ts": {
|
|
840
|
+
"version": "3760ae3dac66aaf2a7025f8feff5cbc1c7d4ebaaa849c2334d4114971179f8fa",
|
|
841
|
+
"signature": "758a84204038ea06ad76ff5716b104430803b32e9c2b48e3ddd348c1005b3d17",
|
|
842
|
+
"affectsGlobalScope": false
|
|
843
|
+
},
|
|
844
|
+
"../src/account-lib/mpc/curves/index.ts": {
|
|
845
|
+
"version": "18ad0d545ab08eb42d73fb1613270c80e33e075ae3a656cfe9f713a79b71ca8f",
|
|
846
|
+
"signature": "f4508d538311f1e1ce71c921186102cf8fe24fc72bb1799b95ac5a0c342a9b95",
|
|
847
|
+
"affectsGlobalScope": false
|
|
848
|
+
},
|
|
849
|
+
"../src/account-lib/mpc/shamir.ts": {
|
|
850
|
+
"version": "e6f46c63645f250c9276566207afab4fb9231b917ef792349120ef0613d4cbe6",
|
|
851
|
+
"signature": "81e88ac4961408d804f04b8af3d7c1a2a72732ad2d5266a6ca21d698ca16c487",
|
|
852
|
+
"affectsGlobalScope": false
|
|
853
|
+
},
|
|
854
|
+
"../src/account-lib/mpc/hdtree.ts": {
|
|
855
|
+
"version": "d8ba7165e2d92720567d06f8e100843d60338c46473c96fbc6110a2f171587cf",
|
|
856
|
+
"signature": "19c9b69cd472352f54269a2c15d8b275b2332e1234424aed7c0d7371d604b3c9",
|
|
857
|
+
"affectsGlobalScope": false
|
|
858
|
+
},
|
|
859
|
+
"../src/account-lib/mpc/tss/eddsa/types.ts": {
|
|
860
|
+
"version": "5e52906aa4e2de91436c7706bce42761c5e58fb65db5175d439ed59e36c7d696",
|
|
861
|
+
"signature": "8f37a990435c15a00c8232df0c5d40401e3b004fe3468f06f28ecff5f8e7dac3",
|
|
862
|
+
"affectsGlobalScope": false
|
|
863
|
+
},
|
|
864
|
+
"../src/account-lib/mpc/tss/eddsa/eddsa.ts": {
|
|
865
|
+
"version": "d8adfa6aed1b0c3fdd95566d27c99896ed8cdbc42087afb79d9295956feb563d",
|
|
866
|
+
"signature": "e13d2f85d7715fb20b76aea54c5bc3d394711031fb015953d826d0f197036acb",
|
|
867
|
+
"affectsGlobalScope": false
|
|
868
|
+
},
|
|
869
|
+
"../src/account-lib/mpc/tss/eddsa/index.ts": {
|
|
870
|
+
"version": "b07a12211b6e4d928d34c875aa336743ebaf95f8cba35a075abcc73628f858cb",
|
|
871
|
+
"signature": "573922398e041604c57e5ebbdec883940b41d085a45a369db565e01b9397731a",
|
|
872
|
+
"affectsGlobalScope": false
|
|
873
|
+
},
|
|
874
|
+
"../../../node_modules/paillier-bigint/types/publickey.d.ts": {
|
|
875
|
+
"version": "2755882608d931e0eed4ba7ab0161124973ac6e3fa156fac2bd9a3c77d4d1f02",
|
|
876
|
+
"signature": "2755882608d931e0eed4ba7ab0161124973ac6e3fa156fac2bd9a3c77d4d1f02",
|
|
877
|
+
"affectsGlobalScope": false
|
|
878
|
+
},
|
|
879
|
+
"../../../node_modules/paillier-bigint/types/privatekey.d.ts": {
|
|
880
|
+
"version": "30eb1f14b2f34f205ced83acb9146df9a106fc782ff3185a56e0f0289808b587",
|
|
881
|
+
"signature": "30eb1f14b2f34f205ced83acb9146df9a106fc782ff3185a56e0f0289808b587",
|
|
882
|
+
"affectsGlobalScope": false
|
|
883
|
+
},
|
|
884
|
+
"../../../node_modules/paillier-bigint/types/generaterandomkeys.d.ts": {
|
|
885
|
+
"version": "004f33767de4ebd56e9d6a80cbce883618c645467fa6e21bf6aaae20f3ccda02",
|
|
886
|
+
"signature": "004f33767de4ebd56e9d6a80cbce883618c645467fa6e21bf6aaae20f3ccda02",
|
|
887
|
+
"affectsGlobalScope": false
|
|
888
|
+
},
|
|
889
|
+
"../../../node_modules/paillier-bigint/types/index.d.ts": {
|
|
890
|
+
"version": "5843659624bc89456b607b9a1cc7142c886f81d56daa4dc7c887df79d0360d9f",
|
|
891
|
+
"signature": "5843659624bc89456b607b9a1cc7142c886f81d56daa4dc7c887df79d0360d9f",
|
|
892
|
+
"affectsGlobalScope": false
|
|
893
|
+
},
|
|
894
|
+
"../../../node_modules/tweetnacl/nacl.d.ts": {
|
|
895
|
+
"version": "60592f5ae1b739c9607a99895d4a3ad5c865b16903e4180e50b256e360a4a104",
|
|
896
|
+
"signature": "60592f5ae1b739c9607a99895d4a3ad5c865b16903e4180e50b256e360a4a104",
|
|
897
|
+
"affectsGlobalScope": false
|
|
898
|
+
},
|
|
899
|
+
"../../../node_modules/@stablelib/hex/lib/hex.d.ts": {
|
|
900
|
+
"version": "a79d5df3df6d6688b6b33cb5970757b89350ec8cca6696a9637fd8431e751766",
|
|
901
|
+
"signature": "a79d5df3df6d6688b6b33cb5970757b89350ec8cca6696a9637fd8431e751766",
|
|
902
|
+
"affectsGlobalScope": false
|
|
903
|
+
},
|
|
904
|
+
"../../../node_modules/noble-bls12-381/math.d.ts": {
|
|
905
|
+
"version": "ec6bebedf1805dc3459fb9b92746a2e330c9f018d1561207662b8509ab0b0782",
|
|
906
|
+
"signature": "ec6bebedf1805dc3459fb9b92746a2e330c9f018d1561207662b8509ab0b0782",
|
|
907
|
+
"affectsGlobalScope": false
|
|
908
|
+
},
|
|
909
|
+
"../../../node_modules/noble-bls12-381/index.d.ts": {
|
|
910
|
+
"version": "43e0ecc04c2dd89eafe3db81f3db486129fcacf9adba9fd4e10f90afca21656a",
|
|
911
|
+
"signature": "43e0ecc04c2dd89eafe3db81f3db486129fcacf9adba9fd4e10f90afca21656a",
|
|
912
|
+
"affectsGlobalScope": false
|
|
913
|
+
},
|
|
914
|
+
"../../../node_modules/bignumber.js/bignumber.d.ts": {
|
|
915
|
+
"version": "1d7d9e42cb2cc36dfc7ce35755ce67d5ff0f4a2ef72d3019f4c461bfd22123da",
|
|
916
|
+
"signature": "1d7d9e42cb2cc36dfc7ce35755ce67d5ff0f4a2ef72d3019f4c461bfd22123da",
|
|
917
|
+
"affectsGlobalScope": false
|
|
918
|
+
},
|
|
919
|
+
"../../statics/dist/src/networks.d.ts": {
|
|
920
|
+
"version": "0c388a84eb7a4dbc6712381cebfccf43d17804baebb115431545a083652bc5df",
|
|
921
|
+
"signature": "0c388a84eb7a4dbc6712381cebfccf43d17804baebb115431545a083652bc5df",
|
|
922
|
+
"affectsGlobalScope": false
|
|
923
|
+
},
|
|
924
|
+
"../../statics/dist/src/base.d.ts": {
|
|
925
|
+
"version": "d57e2dfa033b04a5d83a61f9f9da6f908e525d662cf16a857fa8c3ead00c6bf1",
|
|
926
|
+
"signature": "d57e2dfa033b04a5d83a61f9f9da6f908e525d662cf16a857fa8c3ead00c6bf1",
|
|
927
|
+
"affectsGlobalScope": false
|
|
928
|
+
},
|
|
929
|
+
"../../statics/dist/src/map.d.ts": {
|
|
930
|
+
"version": "15b9480d48ca80c146619e323ac449b2de500370434caf40138cf8656cf187bc",
|
|
931
|
+
"signature": "15b9480d48ca80c146619e323ac449b2de500370434caf40138cf8656cf187bc",
|
|
932
|
+
"affectsGlobalScope": false
|
|
933
|
+
},
|
|
934
|
+
"../../statics/dist/src/coins.d.ts": {
|
|
935
|
+
"version": "601447b3eeb6af532c1c4dcfcd248f84a3c22782f0b00f161119a773095b04d0",
|
|
936
|
+
"signature": "601447b3eeb6af532c1c4dcfcd248f84a3c22782f0b00f161119a773095b04d0",
|
|
937
|
+
"affectsGlobalScope": false
|
|
938
|
+
},
|
|
939
|
+
"../../statics/dist/src/errors.d.ts": {
|
|
940
|
+
"version": "e876f96ae506c3e4144c5e60005f52949b58ada255b5352ae580a5b9652f8d57",
|
|
941
|
+
"signature": "e876f96ae506c3e4144c5e60005f52949b58ada255b5352ae580a5b9652f8d57",
|
|
942
|
+
"affectsGlobalScope": false
|
|
943
|
+
},
|
|
944
|
+
"../../statics/dist/src/ofc.d.ts": {
|
|
945
|
+
"version": "388e9c521c006726ac50f48fc2ce2f94f3878495d9fa2f611a3fb977a703d2fb",
|
|
946
|
+
"signature": "388e9c521c006726ac50f48fc2ce2f94f3878495d9fa2f611a3fb977a703d2fb",
|
|
947
|
+
"affectsGlobalScope": false
|
|
948
|
+
},
|
|
949
|
+
"../../statics/dist/src/utxo.d.ts": {
|
|
950
|
+
"version": "b81d550b95d3e646309bdc55b56fbd6a92d6894f21f64846cd5d1900c989423f",
|
|
951
|
+
"signature": "b81d550b95d3e646309bdc55b56fbd6a92d6894f21f64846cd5d1900c989423f",
|
|
952
|
+
"affectsGlobalScope": false
|
|
953
|
+
},
|
|
954
|
+
"../../statics/dist/src/account.d.ts": {
|
|
955
|
+
"version": "5b060d934531c822539a1414a39bc71221fad4977bac873c627106f3d3932c14",
|
|
956
|
+
"signature": "5b060d934531c822539a1414a39bc71221fad4977bac873c627106f3d3932c14",
|
|
957
|
+
"affectsGlobalScope": false
|
|
958
|
+
},
|
|
959
|
+
"../../statics/dist/src/index.d.ts": {
|
|
960
|
+
"version": "7c5a913c2345be9ee1c7f4bf9ee14feaf2b5071a83c64e6e706294cbfd107308",
|
|
961
|
+
"signature": "7c5a913c2345be9ee1c7f4bf9ee14feaf2b5071a83c64e6e706294cbfd107308",
|
|
962
|
+
"affectsGlobalScope": false
|
|
963
|
+
},
|
|
964
|
+
"../src/account-lib/basecoin/enum.ts": {
|
|
965
|
+
"version": "fc292d9d28cc61fc672a36e47749d99ebeb09c3d3c0852b2c71380717d2ebf5c",
|
|
966
|
+
"signature": "3551e3b9076421318eecca2a5af93f608b529e11cdf9c49e6833e6dafa89a722",
|
|
967
|
+
"affectsGlobalScope": false
|
|
968
|
+
},
|
|
969
|
+
"../src/account-lib/basecoin/errors.ts": {
|
|
970
|
+
"version": "964e505494931fc7193fe376baf1bfc7392b703e2ddb8c6c01e8802bc8ca62ad",
|
|
971
|
+
"signature": "fc2bf7515fd19240248ee620624b970204badf1c99cd68ddc51d51e85d3fdb56",
|
|
972
|
+
"affectsGlobalScope": false
|
|
973
|
+
},
|
|
974
|
+
"../src/account-lib/basecoin/basetransaction.ts": {
|
|
975
|
+
"version": "ae5e15c4ee2a43cde794e05dcba0a62769a44c8b49a13220ccbd3f78a6064409",
|
|
976
|
+
"signature": "8bdc9b1c40bfe6bae4a5d1d283dc40af77ffbd8f49fa0f02242b2ab9d7b5a3fd",
|
|
977
|
+
"affectsGlobalScope": false
|
|
978
|
+
},
|
|
979
|
+
"../src/account-lib/basecoin/basetransactionbuilder.ts": {
|
|
980
|
+
"version": "94b9c6c1769ffe2c2986d561329dbd3e7508af6b41081916c6eb6d4bb24726a3",
|
|
981
|
+
"signature": "57e56b7ba4aaa93ea71d2cc6edcd8d76327e8cf63cb248fe93afd4fdbd732ec1",
|
|
982
|
+
"affectsGlobalScope": false
|
|
983
|
+
},
|
|
984
|
+
"../src/account-lib/basecoin/basetransactionbuilderfactory.ts": {
|
|
985
|
+
"version": "1460929e2ae39ec90c36b483f5aa081957f5190701521affadca1327c75aa761",
|
|
986
|
+
"signature": "ef485ee43bbd8e74a3b4bc614a9cb5a3a7855a9102018159c272e22d38823c45",
|
|
987
|
+
"affectsGlobalScope": false
|
|
988
|
+
},
|
|
989
|
+
"../src/account-lib/basecoin/iface.ts": {
|
|
990
|
+
"version": "eeb479dbd6e9b630d2348c3c076691bd4ebcd22f842d239a26e5a700539d0fde",
|
|
991
|
+
"signature": "807bb071a38bca03245dbcd29737e072810bbdfe2c178a9783dab866ff9c7b14",
|
|
992
|
+
"affectsGlobalScope": false
|
|
993
|
+
},
|
|
994
|
+
"../../../node_modules/base-x/src/index.d.ts": {
|
|
995
|
+
"version": "e91751abb2372a36a90869d36f6ad5d5e69a84c5513ca99d236554e4dd8b9aa1",
|
|
996
|
+
"signature": "e91751abb2372a36a90869d36f6ad5d5e69a84c5513ca99d236554e4dd8b9aa1",
|
|
997
|
+
"affectsGlobalScope": false
|
|
998
|
+
},
|
|
999
|
+
"../../../node_modules/@types/bs58/index.d.ts": {
|
|
1000
|
+
"version": "5cbc27193321e6ba10f4e9f3c5519649d9e2716cf103efd7eaa7a89e0f8ed1d4",
|
|
1001
|
+
"signature": "5cbc27193321e6ba10f4e9f3c5519649d9e2716cf103efd7eaa7a89e0f8ed1d4",
|
|
1002
|
+
"affectsGlobalScope": false
|
|
1003
|
+
},
|
|
1004
|
+
"../src/account-lib/util/crypto.ts": {
|
|
1005
|
+
"version": "78324abe792da57cfc588a791650cd96dcb5d6c74d1a6ec34c7a73ef332a8e24",
|
|
1006
|
+
"signature": "e55c486a6fd3de69fc60ae70aea53f3776041d25ef0cf298ef6f582d875230fa",
|
|
1007
|
+
"affectsGlobalScope": false
|
|
1008
|
+
},
|
|
1009
|
+
"../src/account-lib/mpc/tss/ecdsa/types.ts": {
|
|
1010
|
+
"version": "8f79f9dafa28a46ebb1573f81a78e7058fdd7f76395a31b47f076ab004f35396",
|
|
1011
|
+
"signature": "f3111dd6889ac5c78104afc5b8b9bc401692db48317bc42e6edb36677abaa521",
|
|
1012
|
+
"affectsGlobalScope": false
|
|
1013
|
+
},
|
|
1014
|
+
"../src/account-lib/mpc/tss/ecdsa/ecdsa.ts": {
|
|
1015
|
+
"version": "db0c1f112058ae6db027686c7321c0c6494352d5626512d5b089762829bd3644",
|
|
1016
|
+
"signature": "94c458b75f9e5d03e3b73cbdddc4a7603b192d93e4edccf9fa755dbd33d97e2f",
|
|
1017
|
+
"affectsGlobalScope": false
|
|
1018
|
+
},
|
|
1019
|
+
"../src/account-lib/mpc/tss/ecdsa/index.ts": {
|
|
1020
|
+
"version": "1586c77b1b80322ea8009faed72a1de9d2f2fbb41bb526445b5f9b0aeab89193",
|
|
1021
|
+
"signature": "e50b04036bf89a885314725ac3cc9e6153387c5df5128c8031d0cea5c9a96dbe",
|
|
1022
|
+
"affectsGlobalScope": false
|
|
1023
|
+
},
|
|
1024
|
+
"../src/account-lib/mpc/tss/index.ts": {
|
|
1025
|
+
"version": "a99d7627677f7b5fcd6703beecdd4eb4cfcf4b2dad5ca7eed518bfaec5a7d291",
|
|
1026
|
+
"signature": "5617e56b8eafbb87ab4adda6a05f12b362c0e69de7910909452908b9d159588b",
|
|
1027
|
+
"affectsGlobalScope": false
|
|
1028
|
+
},
|
|
1029
|
+
"../src/api/bip32path.ts": {
|
|
1030
|
+
"version": "35926cf456631166daab38a23a430fc3616b64052f68cceeb46c237c181eab2d",
|
|
1031
|
+
"signature": "6878b6fd40ced2ce0136a94b27ad7feffdb872aaa57eb7a1d49ca0472584be1d",
|
|
1032
|
+
"affectsGlobalScope": false
|
|
1033
|
+
},
|
|
1034
|
+
"../../../node_modules/@types/cookiejar/index.d.ts": {
|
|
1035
|
+
"version": "8d48b8f8a377ade8dd1f000625bc276eea067f2529cc9cafdf082d17142107d6",
|
|
1036
|
+
"signature": "8d48b8f8a377ade8dd1f000625bc276eea067f2529cc9cafdf082d17142107d6",
|
|
1037
|
+
"affectsGlobalScope": false
|
|
1038
|
+
},
|
|
1039
|
+
"../../../node_modules/buffer/index.d.ts": {
|
|
1040
|
+
"version": "8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6",
|
|
1041
|
+
"signature": "8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6",
|
|
1042
|
+
"affectsGlobalScope": false
|
|
1043
|
+
},
|
|
1044
|
+
"../../../node_modules/@types/superagent/index.d.ts": {
|
|
1045
|
+
"version": "31c502014e5ba046d5cb060136929b73fd53f0f989aa37b2b0424644cb0d93ef",
|
|
1046
|
+
"signature": "31c502014e5ba046d5cb060136929b73fd53f0f989aa37b2b0424644cb0d93ef",
|
|
1047
|
+
"affectsGlobalScope": false
|
|
1048
|
+
},
|
|
1049
|
+
"../src/api/types.ts": {
|
|
1050
|
+
"version": "df477450bfd081ff4ef8fdcbdbc3b01ce3e95a6f60675072fadfca2dbbdba23b",
|
|
1051
|
+
"signature": "b40a2689af05ee287166d5a886c7c22af6fb2cfe8e5dd88d8b5434f95599056f",
|
|
1052
|
+
"affectsGlobalScope": false
|
|
1053
|
+
},
|
|
1054
|
+
"../src/api/index.ts": {
|
|
1055
|
+
"version": "2acb6b79354aebbbfa708c281ba8f19e0d3029db9c6d679ddd493801e2b36090",
|
|
1056
|
+
"signature": "8451a535650c7ca1440c4c4b29550b05632f2f20ccfb0c6a8ea738029e8816b5",
|
|
1057
|
+
"affectsGlobalScope": false
|
|
1058
|
+
},
|
|
1059
|
+
"../src/bitgo/internal/internal.ts": {
|
|
1060
|
+
"version": "a3411f08ae3502388a551af3f54c27c316cc02b53884144e61581e5687546b48",
|
|
1061
|
+
"signature": "355cc7769a66a553d15198c0a9b8d64dd817c86b90ac2087ecd48816732e64b4",
|
|
1062
|
+
"affectsGlobalScope": false
|
|
1063
|
+
},
|
|
1064
|
+
"../src/bitgo/trading/affirmation.ts": {
|
|
1065
|
+
"version": "98526834a7377b0c4edac5245872e9d6c588548695ceee91e44ceb9e137856de",
|
|
1066
|
+
"signature": "36baa97d14f8c2988b1e4aa18bd351cdc17bebc8f877ad547ddb7142eb403264",
|
|
1067
|
+
"affectsGlobalScope": false
|
|
1068
|
+
},
|
|
1069
|
+
"../src/bitgo/trading/affirmations.ts": {
|
|
1070
|
+
"version": "a5a520d7bdb8c782c912b558553fd1b8fde273f1438993b195f82ac1043aab8f",
|
|
1071
|
+
"signature": "3bf6452f841b58dff95bf8e90bff0902bb550edf9bbdb46323177caeac186ee7",
|
|
1072
|
+
"affectsGlobalScope": false
|
|
1073
|
+
},
|
|
1074
|
+
"../src/bitgo/trading/payload.ts": {
|
|
1075
|
+
"version": "1898a4b23af042b05220337f52f9545662776b8541384544cbcde86c7c9c93db",
|
|
1076
|
+
"signature": "65b8365a59e52bcd4766cd36400f278a7cb3e9f13f8a03d135f0899f50b6c918",
|
|
1077
|
+
"affectsGlobalScope": false
|
|
1078
|
+
},
|
|
1079
|
+
"../src/bitgo/trading/iaffirmation.ts": {
|
|
1080
|
+
"version": "338e86270e9a1212f0dbc3ec26c7f1a762c342218387bcf444301a35aa1327a4",
|
|
1081
|
+
"signature": "c1975308b123cf859fb8b12d4f649d29b57b4023ad885065c8324ed8c78afab4",
|
|
1082
|
+
"affectsGlobalScope": false
|
|
1083
|
+
},
|
|
1084
|
+
"../src/bitgo/trading/iaffirmations.ts": {
|
|
1085
|
+
"version": "c8932ce1b0819d532210079b052cff64a57ba9ca7a195c9025eb17a566a042e3",
|
|
1086
|
+
"signature": "df48f984ead1645e4f1be8afa85784619df2e1b8b0543af12e7eb62a145454e8",
|
|
1087
|
+
"affectsGlobalScope": false
|
|
1088
|
+
},
|
|
1089
|
+
"../src/bitgo/trading/trade.ts": {
|
|
1090
|
+
"version": "1b5734071307568ca212d1fbe9c72c41f52a8e1440829b14779e384f52bb9cc0",
|
|
1091
|
+
"signature": "a3d1ab61e6d4a67bc0f4437d854a32bf44fb3e8bbc383d1dbaea7d3ecf3c2b45",
|
|
1092
|
+
"affectsGlobalScope": false
|
|
1093
|
+
},
|
|
1094
|
+
"../src/bitgo/trading/isettlement.ts": {
|
|
1095
|
+
"version": "010e9e2f30452a1637e6716bef5192ca3bc86444b908ed207cfff8260d87e846",
|
|
1096
|
+
"signature": "830c6afcfd1459eb0fee886baffce09bb7570210299de0b27599d1f773bfdfa9",
|
|
1097
|
+
"affectsGlobalScope": false
|
|
1098
|
+
},
|
|
1099
|
+
"../src/bitgo/trading/isettlements.ts": {
|
|
1100
|
+
"version": "a3dfa48f5b700b4b2f3434c3c6ab6e901447fd51faaa036ef231016a12b6ef79",
|
|
1101
|
+
"signature": "1664836658f01888d156e0352351d16448da846413136ccfe4363da723ee3b4c",
|
|
1102
|
+
"affectsGlobalScope": false
|
|
1103
|
+
},
|
|
1104
|
+
"../src/bitgo/trading/itradingpartner.ts": {
|
|
1105
|
+
"version": "bb8c6145979cbca0b3f3fb7a306e8d62e0051fc960de079d12a303d7b9849dd6",
|
|
1106
|
+
"signature": "6743be3aeca76c8c5b78edef3e8d36bd9693234ef65a02c7c9f9d5c357aec30a",
|
|
1107
|
+
"affectsGlobalScope": false
|
|
1108
|
+
},
|
|
1109
|
+
"../src/bitgo/trading/itradingpartners.ts": {
|
|
1110
|
+
"version": "31365e2fc957f608654295a66214d7bc9acc4ea7e0b06fef7df688322596f5b3",
|
|
1111
|
+
"signature": "46b4181254048d667c640b1cbaacf060ecadd90896170f84fe0a1ffff6e960fc",
|
|
1112
|
+
"affectsGlobalScope": false
|
|
1113
|
+
},
|
|
1114
|
+
"../src/bitgo/trading/itradingaccount.ts": {
|
|
1115
|
+
"version": "00cd50a32b2ad786b21f3e4fdcccc4cdd54e24f04ff6b87e95ac654521669983",
|
|
1116
|
+
"signature": "c620dc4dca0829880fe680b10a7367bfa0e0dadbe57f665bfffcc2d28b60ef04",
|
|
1117
|
+
"affectsGlobalScope": false
|
|
1118
|
+
},
|
|
1119
|
+
"../src/bitgo/trading/lock.ts": {
|
|
1120
|
+
"version": "a43cbcd616e880ee8900641f5576216a9611a2d32756981de43f23f23e85c389",
|
|
1121
|
+
"signature": "ff6734cb6bdbdb39ff45e9b56bb5ef020b71563e09f6addd65aa1411377862f2",
|
|
1122
|
+
"affectsGlobalScope": false
|
|
1123
|
+
},
|
|
1124
|
+
"../src/bitgo/trading/settlement.ts": {
|
|
1125
|
+
"version": "e764ebbd576a44cda0c3f26efeff47539749f3718c99c9d9b13b3e5b82589d8b",
|
|
1126
|
+
"signature": "236118ff13e813bbc9af87fc61eb2b3d15c224d42a50a83b1f0d560ac20fdb4f",
|
|
1127
|
+
"affectsGlobalScope": false
|
|
1128
|
+
},
|
|
1129
|
+
"../src/bitgo/trading/settlements.ts": {
|
|
1130
|
+
"version": "7452617d3f10d5445742ea862d6893de551a1525d7c36b51e84ea7e38f81774d",
|
|
1131
|
+
"signature": "3b5fd70943b2a74e9310ce5409e838681ae45b2e242ed1ff367c05fa60394814",
|
|
1132
|
+
"affectsGlobalScope": false
|
|
1133
|
+
},
|
|
1134
|
+
"../src/bitgo/keychain/ikeychains.ts": {
|
|
1135
|
+
"version": "d81aea241ce0d0333730b3931a918f308fd0e95832859d202862f5f1bb26e50a",
|
|
1136
|
+
"signature": "587a8a7d715c5d6bc41f3c8cde3c9a793be410528978da47cdebbb6de4ed57e3",
|
|
1137
|
+
"affectsGlobalScope": false
|
|
1138
|
+
},
|
|
1139
|
+
"../../../node_modules/openpgp/openpgp.d.ts": {
|
|
1140
|
+
"version": "b8cd6612a280bee6151f7580e48983533b4b055d51894928487570ed21557b9c",
|
|
1141
|
+
"signature": "b8cd6612a280bee6151f7580e48983533b4b055d51894928487570ed21557b9c",
|
|
1142
|
+
"affectsGlobalScope": false
|
|
1143
|
+
},
|
|
1144
|
+
"../src/bitgo/utils/opengpgutils.ts": {
|
|
1145
|
+
"version": "7fdad9403155f7c98f975296c6752e4a96de5ad992609d04660b35bb1ec0b665",
|
|
1146
|
+
"signature": "09544eb9782599feb217c2ee5ffeddbde184c19297f99a076164cf7bd06d520b",
|
|
1147
|
+
"affectsGlobalScope": false
|
|
1148
|
+
},
|
|
1149
|
+
"../src/bitgo/utils/abstractutxocoinutil.ts": {
|
|
1150
|
+
"version": "4fddc90e6e450ebb7d217a3500bb8bb0df07c57c0bcefa361cff9ff61444130b",
|
|
1151
|
+
"signature": "1ad5f66ed8d7ab15a70dde049400fb5476da576cd9bf33bceefbba754b3e7116",
|
|
1152
|
+
"affectsGlobalScope": false
|
|
1153
|
+
},
|
|
1154
|
+
"../src/account-lib/basecoin/baseutils.ts": {
|
|
1155
|
+
"version": "60f1976fa671c2bedd4bab63c6b5d6441153fa7cde081e711875683365ed9d86",
|
|
1156
|
+
"signature": "c8f09d1ceb9205104994673d40a4b3e3a7057e6ea6c2ff97b5b1e5b84ce34d53",
|
|
1157
|
+
"affectsGlobalScope": false
|
|
1158
|
+
},
|
|
1159
|
+
"../src/account-lib/basecoin/basekeypair.ts": {
|
|
1160
|
+
"version": "29c889672a037cd997f86e8987cb1cf0a1f990da0ee2c3ef419e9eb9a898d5bd",
|
|
1161
|
+
"signature": "e97c8f3aa7ef7fecd709b62d111b1094479b284a44881bee32cb9c2c6738825c",
|
|
1162
|
+
"affectsGlobalScope": false
|
|
1163
|
+
},
|
|
1164
|
+
"../../../node_modules/@types/create-hmac/index.d.ts": {
|
|
1165
|
+
"version": "f5011428f5bc27b1e1624e627a9c455185a15b762f23e4cdbdaf82e2dff767b9",
|
|
1166
|
+
"signature": "f5011428f5bc27b1e1624e627a9c455185a15b762f23e4cdbdaf82e2dff767b9",
|
|
1167
|
+
"affectsGlobalScope": false
|
|
1168
|
+
},
|
|
1169
|
+
"../src/account-lib/util/ed25519keyderiver.ts": {
|
|
1170
|
+
"version": "09b354895c0d689c6b46cb2914a25d897907d35a395b487cbb2d83729cb182a3",
|
|
1171
|
+
"signature": "0ec637dad45e4b4c85667013f17064264702fe07dafb71f66b3fa3d575a8d9b6",
|
|
1172
|
+
"affectsGlobalScope": false
|
|
1173
|
+
},
|
|
1174
|
+
"../src/account-lib/basecoin/ed25519keypair.ts": {
|
|
1175
|
+
"version": "69b8afa16dbbdf46881166149e51302acf8ffe062874d557ea631ec3691b66a8",
|
|
1176
|
+
"signature": "feaaf67e0dae707bbf1336c97ccf0cfe88acadd54c14eef4a5781fdc4af539a7",
|
|
1177
|
+
"affectsGlobalScope": false
|
|
1178
|
+
},
|
|
1179
|
+
"../src/account-lib/basecoin/blskeypair.ts": {
|
|
1180
|
+
"version": "c7f62771400762d82302f4bc4b7d8ebae365c9b77a1512b664935a9dcc719995",
|
|
1181
|
+
"signature": "db816dbd951deea934d1b684ec69537b56f645d374ceb3078bd62c75f50046de",
|
|
1182
|
+
"affectsGlobalScope": false
|
|
1183
|
+
},
|
|
1184
|
+
"../src/account-lib/basecoin/secp256k1extendedkeypair.ts": {
|
|
1185
|
+
"version": "874f1c5c98de81d50ca1c7b0dc312e0107c2f295a00e4cc9062d58c75fddd940",
|
|
1186
|
+
"signature": "4b8cfd4ea3c402cd6e8d5455c1ec6f2833b9dee16d78079603bc042d2caf7ca7",
|
|
1187
|
+
"affectsGlobalScope": false
|
|
1188
|
+
},
|
|
1189
|
+
"../src/account-lib/basecoin/index.ts": {
|
|
1190
|
+
"version": "d3cb5ddfe3ea1f7fb03c62e70b155dfc55776c2a9bddc42973fd1a6725bc9ee8",
|
|
1191
|
+
"signature": "ecb9167b5362720735aded469a61d077ea6884446b2c6c1921a4dcc4d887ff54",
|
|
1192
|
+
"affectsGlobalScope": false
|
|
1193
|
+
},
|
|
1194
|
+
"../src/bitgo/utils/iblsutils.ts": {
|
|
1195
|
+
"version": "18f4e1b148dca8250e632c37007817f9986cc026b644d7088e3b44ce6035a3b8",
|
|
1196
|
+
"signature": "da4b35c36ec71cd74b8f2cdd2b22ff0e1c3363e6e4ad63bf74eeb4c129d344e8",
|
|
1197
|
+
"affectsGlobalScope": false
|
|
1198
|
+
},
|
|
1199
|
+
"../src/bitgo/utils/mpcutils.ts": {
|
|
1200
|
+
"version": "40edc83abb6fb77ebda69c5d50e39113449a5b4efc856c9158291d90ea28fd03",
|
|
1201
|
+
"signature": "f379a961d171bdc691a98d0313467adee8f075656eb21cfb4cc7f7e2b3721208",
|
|
1202
|
+
"affectsGlobalScope": false
|
|
1203
|
+
},
|
|
1204
|
+
"../src/bitgo/utils/blsutils.ts": {
|
|
1205
|
+
"version": "f6c431f54bd6b4f001363afa826b3a2227582fb6a6532f810b2768ac56622264",
|
|
1206
|
+
"signature": "9a809fee2b4235881a4fa528c85a0df1d930e9d38f0e91f21b197766a4ca25ef",
|
|
1207
|
+
"affectsGlobalScope": false
|
|
1208
|
+
},
|
|
1209
|
+
"../src/bitgo/utils/promise-utils.ts": {
|
|
1210
|
+
"version": "c951312973c57f624791e838042cf2712d6f695c38d879c1d75a3070cc0f7530",
|
|
1211
|
+
"signature": "40c1bf82eea7e12c07a3e28158e1f06c6bd1b568f8e3a1b5ddedcfa142fce313",
|
|
1212
|
+
"affectsGlobalScope": false
|
|
1213
|
+
},
|
|
1214
|
+
"../src/bitgo/utils/triple.ts": {
|
|
1215
|
+
"version": "eafc8908dca504220220de30b0664776803d2a7732cffbde3a2553c8e7e747f4",
|
|
1216
|
+
"signature": "4f3be57ddd4fb9ee7e7fa4ba7334e275e0ba884b882fa9fcd88f0c1d73239297",
|
|
1217
|
+
"affectsGlobalScope": false
|
|
1218
|
+
},
|
|
1219
|
+
"../src/bitgo/utils/tss/eddsa/types.ts": {
|
|
1220
|
+
"version": "0ae0511b8ef8a8b0fd5d5c2764bb82243c2716544bc020a495957fd8c0ae0213",
|
|
1221
|
+
"signature": "de1dfad6189cad70474595f52a0fffbba005da30b36c1f2e6c3be724dbafbaa1",
|
|
1222
|
+
"affectsGlobalScope": false
|
|
1223
|
+
},
|
|
1224
|
+
"../src/bitgo/utils/tss/eddsa/eddsa.ts": {
|
|
1225
|
+
"version": "3aaaee0b676c1c9d6d0760b57be096b43f64240e31a0e5e06531287683ac1373",
|
|
1226
|
+
"signature": "cb0e44ffb54646e5396831f73c394e630a2406836be640ae59e8df72bb0f87b0",
|
|
1227
|
+
"affectsGlobalScope": false
|
|
1228
|
+
},
|
|
1229
|
+
"../src/bitgo/utils/tss/eddsa/index.ts": {
|
|
1230
|
+
"version": "46a86dc3dffe0ca02686fed9e7783043d871d652c28ec4b80796e896e2c5d39b",
|
|
1231
|
+
"signature": "32ba76c623315fc4b31f6a76ebb3a4a66e32c25ab8b38a63c8f190528bc38ec2",
|
|
1232
|
+
"affectsGlobalScope": false
|
|
1233
|
+
},
|
|
1234
|
+
"../src/bitgo/utils/tss/index.ts": {
|
|
1235
|
+
"version": "c2b82bcd48a6baea29a2a9f3ba1e559b4f5af0a772b77ee7195a26cbf2cff145",
|
|
1236
|
+
"signature": "1fdd4aec7dcbe04df5eebec7ed56b7ab161245dc7e48b8cb66ad6abd03f3a2d7",
|
|
1237
|
+
"affectsGlobalScope": false
|
|
1238
|
+
},
|
|
1239
|
+
"../src/bitgo/errors.ts": {
|
|
1240
|
+
"version": "b9d3f8f0e6a473923d14bd37d3f349593309d4d803a6c507222f3be6fca201f9",
|
|
1241
|
+
"signature": "4398df4ccbab4944d859666d7f75ee6e0ce43a7f33d5e641bbc451474a8fc900",
|
|
1242
|
+
"affectsGlobalScope": false
|
|
1243
|
+
},
|
|
1244
|
+
"../../../node_modules/@types/bn.js/index.d.ts": {
|
|
1245
|
+
"version": "bc6dd50ac2fc9a7ca6488811b116bd0ddd606338db0bb97852c8fcf757e2d7f5",
|
|
1246
|
+
"signature": "bc6dd50ac2fc9a7ca6488811b116bd0ddd606338db0bb97852c8fcf757e2d7f5",
|
|
1247
|
+
"affectsGlobalScope": false
|
|
1248
|
+
},
|
|
1249
|
+
"../../../node_modules/rlp/dist/types.d.ts": {
|
|
1250
|
+
"version": "1ee47e6ed1cf98c573934f9a63e65cd7acf7314a2654da2630c2be6bda12871b",
|
|
1251
|
+
"signature": "1ee47e6ed1cf98c573934f9a63e65cd7acf7314a2654da2630c2be6bda12871b",
|
|
1252
|
+
"affectsGlobalScope": false
|
|
1253
|
+
},
|
|
1254
|
+
"../../../node_modules/rlp/dist/index.d.ts": {
|
|
1255
|
+
"version": "8fcc2bc8dae2c29f7db02ca5112f343936e544bab0dd66c997ec2045fae4b660",
|
|
1256
|
+
"signature": "8fcc2bc8dae2c29f7db02ca5112f343936e544bab0dd66c997ec2045fae4b660",
|
|
1257
|
+
"affectsGlobalScope": false
|
|
1258
|
+
},
|
|
1259
|
+
"../../../node_modules/ethereumjs-util/dist/constants.d.ts": {
|
|
1260
|
+
"version": "4722cf7a7d9c980965eb59465737be548c4012a169e66a67dfc881dde5112204",
|
|
1261
|
+
"signature": "4722cf7a7d9c980965eb59465737be548c4012a169e66a67dfc881dde5112204",
|
|
1262
|
+
"affectsGlobalScope": false
|
|
1263
|
+
},
|
|
1264
|
+
"../../../node_modules/ethereumjs-util/dist/account.d.ts": {
|
|
1265
|
+
"version": "e1d63b39b3517ac3f3ae04ae519d41242b44646130af458acbb0bbbe694b303e",
|
|
1266
|
+
"signature": "e1d63b39b3517ac3f3ae04ae519d41242b44646130af458acbb0bbbe694b303e",
|
|
1267
|
+
"affectsGlobalScope": false
|
|
1268
|
+
},
|
|
1269
|
+
"../../../node_modules/ethereumjs-util/dist/hash.d.ts": {
|
|
1270
|
+
"version": "d6be1337204e593ddaa0234d37be3b09658bdbd9006237e3cb2e08948f5f13aa",
|
|
1271
|
+
"signature": "d6be1337204e593ddaa0234d37be3b09658bdbd9006237e3cb2e08948f5f13aa",
|
|
1272
|
+
"affectsGlobalScope": false
|
|
1273
|
+
},
|
|
1274
|
+
"../../../node_modules/ethereumjs-util/dist/signature.d.ts": {
|
|
1275
|
+
"version": "f3b62429b80f1216f751b39302bbfc0b30156c2b502791c26d93868574ee80c7",
|
|
1276
|
+
"signature": "f3b62429b80f1216f751b39302bbfc0b30156c2b502791c26d93868574ee80c7",
|
|
1277
|
+
"affectsGlobalScope": false
|
|
1278
|
+
},
|
|
1279
|
+
"../../../node_modules/ethereumjs-util/dist/bytes.d.ts": {
|
|
1280
|
+
"version": "a29fa54beee2b1cdae7b957d04878711e8b3e81e83a3617cfbc55c58abfb899b",
|
|
1281
|
+
"signature": "a29fa54beee2b1cdae7b957d04878711e8b3e81e83a3617cfbc55c58abfb899b",
|
|
1282
|
+
"affectsGlobalScope": false
|
|
1283
|
+
},
|
|
1284
|
+
"../../../node_modules/ethereumjs-util/dist/object.d.ts": {
|
|
1285
|
+
"version": "7d94535f9f1d806369869945c09587b69b924f741d857f8c8586eb2bb4b928b2",
|
|
1286
|
+
"signature": "7d94535f9f1d806369869945c09587b69b924f741d857f8c8586eb2bb4b928b2",
|
|
1287
|
+
"affectsGlobalScope": false
|
|
1288
|
+
},
|
|
1289
|
+
"../../../node_modules/ethereumjs-util/dist/index.d.ts": {
|
|
1290
|
+
"version": "0f63c2b2470fb1999de0a5bf24e3a9f9f3eeec8bafa2312ab74d492d487690d6",
|
|
1291
|
+
"signature": "0f63c2b2470fb1999de0a5bf24e3a9f9f3eeec8bafa2312ab74d492d487690d6",
|
|
1292
|
+
"affectsGlobalScope": false
|
|
1293
|
+
},
|
|
1294
|
+
"../src/bitgo/utils/util.ts": {
|
|
1295
|
+
"version": "4412b5db50a793fad9a2db3b75ec348abf27942d3fd4ab397997dd5e451547b3",
|
|
1296
|
+
"signature": "73b4863e9315ef95bd17e104622d67aa5963f48fecdf5b224296f85db9454a4f",
|
|
1297
|
+
"affectsGlobalScope": false
|
|
1298
|
+
},
|
|
1299
|
+
"../src/bitgo/utils/index.ts": {
|
|
1300
|
+
"version": "29472b031f286e615084b51be809e2a23f71778d22b24b7c82169d11da4e6cc7",
|
|
1301
|
+
"signature": "ca9c36836dcfcd6d297c7731187e6ba3291a41d4141ada13bf531ad300a6e2d6",
|
|
1302
|
+
"affectsGlobalScope": false
|
|
1303
|
+
},
|
|
1304
|
+
"../src/bitgo/keychain/keychains.ts": {
|
|
1305
|
+
"version": "c4e50aa6b62358034969e7d5eb170fc2ea467a00f1378f38a907f38e83f32c88",
|
|
1306
|
+
"signature": "6b6b0ac8643dd61d53275d433dee0ba47ecddb233f459096052028e03c14f05c",
|
|
1307
|
+
"affectsGlobalScope": false
|
|
1308
|
+
},
|
|
1309
|
+
"../src/bitgo/keychain/index.ts": {
|
|
1310
|
+
"version": "c8d0f9ca60f70e11763a25dfea52e00e4488093ddd7d16f7ad022f4cdd55cce4",
|
|
1311
|
+
"signature": "5dc545cb87aff9101b1923ee7210d04b814f820d869d2383c293959709e0fe1e",
|
|
1312
|
+
"affectsGlobalScope": false
|
|
1313
|
+
},
|
|
1314
|
+
"../src/bitgo/pendingapproval/ipendingapproval.ts": {
|
|
1315
|
+
"version": "b33a0c99f971d7acee710551a31da8908fe610a52d054d407e9f503cebedbd67",
|
|
1316
|
+
"signature": "06bbd1c2ccd26ab577a1d25b031f795178f46a7a6d1cfb7da21bdb252761e9b8",
|
|
1317
|
+
"affectsGlobalScope": false
|
|
1318
|
+
},
|
|
1319
|
+
"../src/bitgo/pendingapproval/ipendingapprovals.ts": {
|
|
1320
|
+
"version": "683335d31f39b462175ed7d9a089700360614e857d01c1ae358ef50447ace90d",
|
|
1321
|
+
"signature": "01634b82758958adce48f8d88e03bd56fe20308fbf40a0a15dcd500971f5024c",
|
|
1322
|
+
"affectsGlobalScope": false
|
|
1323
|
+
},
|
|
1324
|
+
"../src/bitgo/pendingapproval/pendingapproval.ts": {
|
|
1325
|
+
"version": "8684eb53efa02a518f0c2d94f452494b1fc42ce89b57fad9608afc071d703f25",
|
|
1326
|
+
"signature": "7944af161d0ae5a951708171de9eb569dcf1d04aaf4dafb91b27438909a3d42e",
|
|
1327
|
+
"affectsGlobalScope": false
|
|
1328
|
+
},
|
|
1329
|
+
"../src/bitgo/pendingapproval/pendingapprovals.ts": {
|
|
1330
|
+
"version": "82bbb4ab4eca6571e203fa7bc111d52fe781f4531127b264e7312d30775a8c97",
|
|
1331
|
+
"signature": "b2f135c639ac926a1b64c6de369d86d1fd5cc7aef18fcbc0b1977fc8d20bf7c1",
|
|
1332
|
+
"affectsGlobalScope": false
|
|
1333
|
+
},
|
|
1334
|
+
"../src/bitgo/pendingapproval/index.ts": {
|
|
1335
|
+
"version": "af43e2fbefcb987495af3885475bc20fec590234df2ca53afd1891d38f10527c",
|
|
1336
|
+
"signature": "ff9932e14e3cf0183eb31d75e5d97ed77c58f7b9959086dce77b5885da307a4c",
|
|
1337
|
+
"affectsGlobalScope": false
|
|
1338
|
+
},
|
|
1339
|
+
"../src/bitgo/wallet/iwallet.ts": {
|
|
1340
|
+
"version": "bea9bab1ea89493b9671ec2a87a7d975622096b4ac6c05437107aa6baaabbfb7",
|
|
1341
|
+
"signature": "87043c68437cfbd0d93e6370b12a23d16a6e3ac5901825de81e2f2b73e153e66",
|
|
1342
|
+
"affectsGlobalScope": false
|
|
1343
|
+
},
|
|
1344
|
+
"../../../node_modules/@types/secp256k1/index.d.ts": {
|
|
1345
|
+
"version": "3dce33e7eb25594863b8e615f14a45ab98190d85953436750644212d8a18c066",
|
|
1346
|
+
"signature": "3dce33e7eb25594863b8e615f14a45ab98190d85953436750644212d8a18c066",
|
|
1347
|
+
"affectsGlobalScope": false
|
|
1348
|
+
},
|
|
1349
|
+
"../src/bitgo/ecdh.ts": {
|
|
1350
|
+
"version": "0f1bcb73b2edb92b43b0a041957db8d9be91f54aea537f71549e5ae0e9ca4b68",
|
|
1351
|
+
"signature": "f6025dd3909202be6632933efaeedab62c05903c2ea28627cfa07ec623961e84",
|
|
1352
|
+
"affectsGlobalScope": false
|
|
1353
|
+
},
|
|
1354
|
+
"../src/bitgo/internal/keycard.ts": {
|
|
1355
|
+
"version": "f743ade02ac8bf818d6ff252d035467df7293b1036191bbdbb60dec578cc2083",
|
|
1356
|
+
"signature": "a9296deac5393954955cb5a36f5c648f9c85142ac5af78a620c2bd37e76697f4",
|
|
1357
|
+
"affectsGlobalScope": false
|
|
1358
|
+
},
|
|
1359
|
+
"../src/bitgo/wallet/wallet.ts": {
|
|
1360
|
+
"version": "d99680cc0f03ed39708808ae7b36a97c6747e907079a94d4b08f31592724510a",
|
|
1361
|
+
"signature": "49fe83733c077d0cf487cfc3670a5a10b2c841a54b54aae1488f19f0753b7be0",
|
|
1362
|
+
"affectsGlobalScope": false
|
|
1363
|
+
},
|
|
1364
|
+
"../src/bitgo/wallet/iwallets.ts": {
|
|
1365
|
+
"version": "024e1a4551fb5c9b70c2653578770e4a119ce02dea39ef443cfe88a438541f42",
|
|
1366
|
+
"signature": "d1b65032b63c30450a7327b91941c90ab0eddaf34a5b66ef017e2a8f2956c967",
|
|
1367
|
+
"affectsGlobalScope": false
|
|
1368
|
+
},
|
|
1369
|
+
"../src/bitgo/wallet/wallets.ts": {
|
|
1370
|
+
"version": "9ec503ab01773f18489d4881294b6b91dec661d68395d39ae62c41c93acb9a98",
|
|
1371
|
+
"signature": "ff95026007a81efcd914c98288753cb056967fb09b43ea0f2f8e4e9d0513064f",
|
|
1372
|
+
"affectsGlobalScope": false
|
|
1373
|
+
},
|
|
1374
|
+
"../src/bitgo/wallet/index.ts": {
|
|
1375
|
+
"version": "b938dcd1f76e9e454e5d7f8fb263387dbc4b1c6a9b08dc8c01dbbda0bd1b35d4",
|
|
1376
|
+
"signature": "894e4cf0c0de0431adc3d7339bb4809bdbaaa5758800558c8244ec33c1497230",
|
|
1377
|
+
"affectsGlobalScope": false
|
|
1378
|
+
},
|
|
1379
|
+
"../src/bitgo/trading/tradingaccount.ts": {
|
|
1380
|
+
"version": "c952de6aa403cd45aab614d0bec3995695ef766eb82fa1bd9bfafdd238c7eb30",
|
|
1381
|
+
"signature": "9f3fe7c5c9d3deb6fe21803bc6aa4cf5db9f8544c7e9e54327509ce259128085",
|
|
1382
|
+
"affectsGlobalScope": false
|
|
1383
|
+
},
|
|
1384
|
+
"../src/bitgo/trading/tradingpartner.ts": {
|
|
1385
|
+
"version": "a2b1d452d105c3dd7332e833285ab04576a1fa78e205c7ddf8749657fb536de7",
|
|
1386
|
+
"signature": "a9628fd0935ec70465ce350154ade045d0d0fa67f646020d3aac332728d3dafb",
|
|
1387
|
+
"affectsGlobalScope": false
|
|
1388
|
+
},
|
|
1389
|
+
"../src/bitgo/trading/tradingpartners.ts": {
|
|
1390
|
+
"version": "d8fb4b93f32a1357c02b451d2b65eadd09fd001738766d0078d0ef04a118912c",
|
|
1391
|
+
"signature": "8d973f042b66b320a1ab7518a5920d317415b40b74a755df06aea0c49e59307b",
|
|
1392
|
+
"affectsGlobalScope": false
|
|
1393
|
+
},
|
|
1394
|
+
"../src/bitgo/trading/index.ts": {
|
|
1395
|
+
"version": "0ba637a67e23360aa6f43331ef6ac0111f805dc868cddd8105ac750a6157b71e",
|
|
1396
|
+
"signature": "c4e70d0eb1c3440a14e9b6d4a2447f2aa1f5854166a440bb4cf7432a5079ee57",
|
|
1397
|
+
"affectsGlobalScope": false
|
|
1398
|
+
},
|
|
1399
|
+
"../src/bitgo/enterprise/enterprise.ts": {
|
|
1400
|
+
"version": "16e8166f6fcb007602a3b145ecac40bb3875e8938cdacb280a5dc55eb02d7099",
|
|
1401
|
+
"signature": "462b87a9757cd508e4d0bf36f42d1abede48ee240424f3b5bad320cb8af8e4fd",
|
|
1402
|
+
"affectsGlobalScope": false
|
|
1403
|
+
},
|
|
1404
|
+
"../src/bitgo/enterprise/ienterprise.ts": {
|
|
1405
|
+
"version": "eb69cd11187a1f03602761b0fef6c0ef7a83736164871411bbe381b9914abb8d",
|
|
1406
|
+
"signature": "a7b00c978534feae55621bd402e1c9f4026ad4139ced494d4d665d578ddf5fee",
|
|
1407
|
+
"affectsGlobalScope": false
|
|
1408
|
+
},
|
|
1409
|
+
"../src/bitgo/enterprise/ienterprises.ts": {
|
|
1410
|
+
"version": "58d7f38b53d16da3cb329560664b9251bf0aa4f8be52f943107eb7b210d24244",
|
|
1411
|
+
"signature": "2263074df1837148e30e363bf38c77c7abb4690e469667d0b0286306123a414a",
|
|
1412
|
+
"affectsGlobalScope": false
|
|
1413
|
+
},
|
|
1414
|
+
"../src/bitgo/enterprise/enterprises.ts": {
|
|
1415
|
+
"version": "9316d35f72ca38887f97965725c9a0e819cf51ef1d37732569b50be352132afc",
|
|
1416
|
+
"signature": "30108c99aeb7ac53bf774a8ead10e9860d7b9d6da8cbb08ea55df1a571fa8bfe",
|
|
1417
|
+
"affectsGlobalScope": false
|
|
1418
|
+
},
|
|
1419
|
+
"../src/bitgo/enterprise/index.ts": {
|
|
1420
|
+
"version": "b3edd21907680a84bc7bbc6c72c37b77e93ca0fd4f82f4080b7b6a2254d0872c",
|
|
1421
|
+
"signature": "8e6f0a558f693ea69f2b0d920a1056d748b5f39e15d9ccb41d35d0b25aea9cef",
|
|
1422
|
+
"affectsGlobalScope": false
|
|
1423
|
+
},
|
|
1424
|
+
"../src/bitgo/market/imarkets.ts": {
|
|
1425
|
+
"version": "8339e981a787f62feff9a471c82f8b696cc80b26580eca0c81a18b4a488c02a1",
|
|
1426
|
+
"signature": "ebf5b5e8a0f18bc08ba69aef60bc208076d940c711a79d29de508b2060bcac54",
|
|
1427
|
+
"affectsGlobalScope": false
|
|
1428
|
+
},
|
|
1429
|
+
"../src/bitgo/market/markets.ts": {
|
|
1430
|
+
"version": "d77d86686983a7413ec0d242dd08e1001bf8ea4525a9f98145e46e85fcd1f962",
|
|
1431
|
+
"signature": "2a6b55ac4d5932b7fbcff4ebb8c45db8a4a98e8e75619009a2b180674d186c67",
|
|
1432
|
+
"affectsGlobalScope": false
|
|
1433
|
+
},
|
|
1434
|
+
"../src/bitgo/market/index.ts": {
|
|
1435
|
+
"version": "59a22f4bfc55490c51d999c805802f25f015ec21d83c11aa5db20a48a7d6fd7c",
|
|
1436
|
+
"signature": "03272d63ddabcf7ee0a52e218cb244dfb67c16f0e50c1b56927304b25caf8497",
|
|
1437
|
+
"affectsGlobalScope": false
|
|
1438
|
+
},
|
|
1439
|
+
"../src/bitgo/config.ts": {
|
|
1440
|
+
"version": "eb61cd2a5ccf40f45209987e0603d2298678493ec7a51f73b2a6e052eccbc5f3",
|
|
1441
|
+
"signature": "79c5e61d14f664f6f394eabfc9a6e00ea16eac70ebf0c7b7e8901873d1b579c8",
|
|
1442
|
+
"affectsGlobalScope": false
|
|
1443
|
+
},
|
|
1444
|
+
"../src/bitgo/recovery/initiate.ts": {
|
|
1445
|
+
"version": "bc3bf9a619b769f83be96c3724b0721eaf651019a284b6261518f8ee72fd0448",
|
|
1446
|
+
"signature": "3d31bd60cb3a57b929a0a302dd44359752593b5d7b788bfdbd429d608e82735a",
|
|
1447
|
+
"affectsGlobalScope": false
|
|
1448
|
+
},
|
|
1449
|
+
"../src/bitgo/recovery/index.ts": {
|
|
1450
|
+
"version": "8bf9eb184fe55d122cbda02300633f9ccf8f740c8d519959052bdfc958355fdb",
|
|
1451
|
+
"signature": "8d72143571de787f9599dfbb5f646348c1b0b2c32fa75170e429f3c2a6c2511b",
|
|
1452
|
+
"affectsGlobalScope": false
|
|
1453
|
+
},
|
|
1454
|
+
"../src/bitgo/webhook/iwebhooks.ts": {
|
|
1455
|
+
"version": "d4ec0046d622b5849e2980cd2c58247d53c07badbe350a0b2384e5f190d0f229",
|
|
1456
|
+
"signature": "f6d333089ccadadc2c2b79405976799825f991ea493a0dc329ff07cc3f613897",
|
|
1457
|
+
"affectsGlobalScope": false
|
|
1458
|
+
},
|
|
1459
|
+
"../src/bitgo/basecoin/ibasecoin.ts": {
|
|
1460
|
+
"version": "1e2517837aee7fd2c85b1a5fb04bbd5ff39c205764b034bc2bc75a8c84f1a012",
|
|
1461
|
+
"signature": "5dbdefd665f8a8e05f38c05ecc7f7d2f129c8794d06fa9c218d137c90745ceb1",
|
|
1462
|
+
"affectsGlobalScope": false
|
|
1463
|
+
},
|
|
1464
|
+
"../../../node_modules/bitcoinjs-message/index.d.ts": {
|
|
1465
|
+
"version": "88957d2e3a59673392fea81daf51ac4ecc8018844280e0d99ad595994af8a010",
|
|
1466
|
+
"signature": "88957d2e3a59673392fea81daf51ac4ecc8018844280e0d99ad595994af8a010",
|
|
1467
|
+
"affectsGlobalScope": false
|
|
1468
|
+
},
|
|
1469
|
+
"../src/bitgo/bip32util.ts": {
|
|
1470
|
+
"version": "95118fb2d78dd8bde2ddc60f39a03050e7cdde344f6b0da66837eedf7daf0337",
|
|
1471
|
+
"signature": "08fdfaab8ed6d659d99a82465a13969a0e2e04ae3d1601c8d89195dc5465c679",
|
|
1472
|
+
"affectsGlobalScope": false
|
|
1473
|
+
},
|
|
1474
|
+
"../src/account-lib/mpc/index.ts": {
|
|
1475
|
+
"version": "df17e929436d8ae25eb1a4b4a80c506bbf9603c3ce84ab61bb75cba00c2e4345",
|
|
1476
|
+
"signature": "7bd32bb6d472978aebf1c0647aa7f35f774f10142a7b885c6c4d2bc71e370bbe",
|
|
1477
|
+
"affectsGlobalScope": false
|
|
1478
|
+
},
|
|
1479
|
+
"../src/account-lib/index.ts": {
|
|
1480
|
+
"version": "4b281dd9cd75b0a299d7a32d82ceedde8f19a7c42d39ff0c5d8814002c311f3d",
|
|
1481
|
+
"signature": "90019c6b20cff3d6c5bbc062aaa4f32adb1d5a0a7da1b297fa49826e9e0d14c4",
|
|
1482
|
+
"affectsGlobalScope": false
|
|
1483
|
+
},
|
|
1484
|
+
"../src/bitgo/webhook/webhooks.ts": {
|
|
1485
|
+
"version": "886b0e6956266b1d68074f5045143552cee82bc6f57db0e8ffcb51aa84e8948d",
|
|
1486
|
+
"signature": "e1dcf3873c2b4d6a7b95904312731104a194f945706c68b881fbc3d6fffe11d1",
|
|
1487
|
+
"affectsGlobalScope": false
|
|
1488
|
+
},
|
|
1489
|
+
"../src/bitgo/webhook/index.ts": {
|
|
1490
|
+
"version": "b38b31cd0d2a33394106638287abcfa9a92a3211126c22cd1c072479dc397985",
|
|
1491
|
+
"signature": "f4d82e5f2efa2aef43c5f3dcdfafcaccc0a5eeb1a57f2a206d7347e8f28176de",
|
|
1492
|
+
"affectsGlobalScope": false
|
|
1493
|
+
},
|
|
1494
|
+
"../src/bitgo/basecoin/basecoin.ts": {
|
|
1495
|
+
"version": "b207b4be4959b96d69ec64bbadf2f472cf239b5db0c8aa129242cd40b57b06e5",
|
|
1496
|
+
"signature": "14e8b1e0ad4f9a362000a12a2aee2b3a6eb888b5e6e65a2b67c599e5cefa1ebb",
|
|
1497
|
+
"affectsGlobalScope": false
|
|
1498
|
+
},
|
|
1499
|
+
"../src/bitgo/basecoin/index.ts": {
|
|
1500
|
+
"version": "fa7828312d84b7d311e6e4f2fbbb131bf80d41a51fb741c668cde40204471d03",
|
|
1501
|
+
"signature": "cd67eb67ee275244f43c5ff632be58440f2907f3593b2e1881fba62e1865b53e",
|
|
1502
|
+
"affectsGlobalScope": false
|
|
1503
|
+
},
|
|
1504
|
+
"../src/bitgo/environments.ts": {
|
|
1505
|
+
"version": "5aa7a94472da930f1d6aca2702ce07b35339f1613545087000c85931383854b0",
|
|
1506
|
+
"signature": "77c0096e2419b04036cac2fbff4d2ba95a097a01df328bb2b20c4ccc51251f00",
|
|
1507
|
+
"affectsGlobalScope": false
|
|
1508
|
+
},
|
|
1509
|
+
"../src/bitgo/bitgobase.ts": {
|
|
1510
|
+
"version": "e0c4ad27a9bbaf39839de7fe5dd8344c168a8b81eb27d81cd34e39e9ededca0e",
|
|
1511
|
+
"signature": "b4365af0ad5483c2998fcd9ac0d5fb974ff094d2a5333393e4592060733fd5ad",
|
|
1512
|
+
"affectsGlobalScope": false
|
|
1513
|
+
},
|
|
1514
|
+
"../src/bitgo/tss/eddsa/types.ts": {
|
|
1515
|
+
"version": "b263c35e68d581a9a97d8353dfad5e75948dbddb0cefeb96529074c3f44b6115",
|
|
1516
|
+
"signature": "f4078ae4e4b33d3a92b7ea956f9d8791ffa69bf65ad4e4e0cdb74267990367f4",
|
|
1517
|
+
"affectsGlobalScope": false
|
|
1518
|
+
},
|
|
1519
|
+
"../src/bitgo/tss/types.ts": {
|
|
1520
|
+
"version": "384f191b62b474ff0f070b5d4918fdeffdd7f0afb5911ef1d493ad2d1080c23b",
|
|
1521
|
+
"signature": "baae7dd2d0bc6cc8e0bde790bb6bb2a0ed34e2fceb5fa1531af9a81d3345a8a1",
|
|
1522
|
+
"affectsGlobalScope": false
|
|
1523
|
+
},
|
|
1524
|
+
"../src/bitgo/tss/eddsa/eddsa.ts": {
|
|
1525
|
+
"version": "b2effbdc37ad4d90a686e12fab5662a2a7b00c0df7e217920d27afd8919e00e5",
|
|
1526
|
+
"signature": "7168d1ddea758cb066d94f4209bb7a85823197cafe389acfa051c19ebe62896f",
|
|
1527
|
+
"affectsGlobalScope": false
|
|
1528
|
+
},
|
|
1529
|
+
"../src/bitgo/tss/eddsa/index.ts": {
|
|
1530
|
+
"version": "f15f3c57d9633b1cc96f60f41f03bfff8bfc7ace73f1a2fe1eb984c0f9412657",
|
|
1531
|
+
"signature": "41d8c5b8d44bf0105e595e62aca56a5f9992708cf0403c579c7a28b9e40fcc34",
|
|
1532
|
+
"affectsGlobalScope": false
|
|
1533
|
+
},
|
|
1534
|
+
"../src/bitgo/tss/ecdsa/types.ts": {
|
|
1535
|
+
"version": "4494cd989442b005a1189fc4e0c39fae63d95893c313486c59cf770cc6c02318",
|
|
1536
|
+
"signature": "a89f9fb0594c6b0028e02eb087316af862b6ccf5a41504c843f7042f25164145",
|
|
1537
|
+
"affectsGlobalScope": false
|
|
1538
|
+
},
|
|
1539
|
+
"../src/bitgo/tss/ecdsa/ecdsa.ts": {
|
|
1540
|
+
"version": "30905d5b02810f80e5a8d941a2392f2b97e9a9fb2a3533e730a86dde36dc6444",
|
|
1541
|
+
"signature": "20c7b080034ed664138ed81baffa810b78494a6be80a41d2285ec5ee42dffe88",
|
|
1542
|
+
"affectsGlobalScope": false
|
|
1543
|
+
},
|
|
1544
|
+
"../src/bitgo/tss/ecdsa/index.ts": {
|
|
1545
|
+
"version": "654529afc86087de8b5d63b85979f1f0f9f5a41855c1eee374488e773ffb37f1",
|
|
1546
|
+
"signature": "773a3c0ddfdf79a49f170a92494ea2070a37430f631d6bf677feb1b3b16c27ea",
|
|
1547
|
+
"affectsGlobalScope": false
|
|
1548
|
+
},
|
|
1549
|
+
"../src/bitgo/tss/index.ts": {
|
|
1550
|
+
"version": "ed440f0c639ef531866f6bf9b3de32e6149013c15031b3ec1d836c0e9944409d",
|
|
1551
|
+
"signature": "e709417fc4aeb3b19c4028b6a5512bd611d42e85a3acc4c605aaf59650b1b457",
|
|
1552
|
+
"affectsGlobalScope": false
|
|
1553
|
+
},
|
|
1554
|
+
"../src/bitgo/coinfactory.ts": {
|
|
1555
|
+
"version": "1c4a54ca8229731d3eeace14451da56d1ab6d031df55f95b02dd595a309682fd",
|
|
1556
|
+
"signature": "06b42480ae78f611f52ae7a3647bc61bb34822fdf7c85332eda73aaf3a8342aa",
|
|
1557
|
+
"affectsGlobalScope": false
|
|
1558
|
+
},
|
|
1559
|
+
"../src/bitgo/internal/index.ts": {
|
|
1560
|
+
"version": "d4da9754445ea9eefe81c37e29c40fc5541fc5716c01676896575f1ad7dfeaf1",
|
|
1561
|
+
"signature": "d31e72a3dc264ab160d4e5a2918a38d52c0ca8fc14a0a808ba77ba7c3cadee9d",
|
|
1562
|
+
"affectsGlobalScope": false
|
|
1563
|
+
},
|
|
1564
|
+
"../src/bitgo/index.ts": {
|
|
1565
|
+
"version": "fc8da293198a255bca713b5b834c7b5b7714c2edf4159d1d99e05efc9ddb0b26",
|
|
1566
|
+
"signature": "c0b076f441e9c93052aff644f64721b7e7c62e6d4c97a9b2be600c421f038578",
|
|
1567
|
+
"affectsGlobalScope": false
|
|
1568
|
+
},
|
|
1569
|
+
"../src/common.ts": {
|
|
1570
|
+
"version": "02f021d19076b9bdc57c2925993b8f1ab5cc21603d37f12d630ba24ba5931980",
|
|
1571
|
+
"signature": "1d66ff77b2723eeea8a578545278567b4e431e715daee5257db3f48e348717f6",
|
|
1572
|
+
"affectsGlobalScope": false
|
|
1573
|
+
},
|
|
1574
|
+
"../src/index.ts": {
|
|
1575
|
+
"version": "c9e913a1399c25459c58a3380609b40a5d47ca5dc12307e38c777f625ed2c1b2",
|
|
1576
|
+
"signature": "4fbe47f6a7d5399428219c89923d9935657751681113202b83d61aeabdcd32a7",
|
|
577
1577
|
"affectsGlobalScope": false
|
|
578
1578
|
},
|
|
579
|
-
"../../../
|
|
580
|
-
"version": "
|
|
581
|
-
"signature": "
|
|
1579
|
+
"../../../types/bignumber.js/index.d.ts": {
|
|
1580
|
+
"version": "7440b4a4b965c74745cbbafdf32366de82b7dea1bdb85a472770a888d5201ff7",
|
|
1581
|
+
"signature": "7440b4a4b965c74745cbbafdf32366de82b7dea1bdb85a472770a888d5201ff7",
|
|
582
1582
|
"affectsGlobalScope": false
|
|
583
1583
|
},
|
|
584
|
-
"../../../
|
|
585
|
-
"version": "
|
|
586
|
-
"signature": "
|
|
1584
|
+
"../../../types/express/index.d.ts": {
|
|
1585
|
+
"version": "70f0ddc58f8b7283e1cffa39863938ab694e14fb3dcf0cac4d78b2d002f91255",
|
|
1586
|
+
"signature": "70f0ddc58f8b7283e1cffa39863938ab694e14fb3dcf0cac4d78b2d002f91255",
|
|
1587
|
+
"affectsGlobalScope": true
|
|
1588
|
+
},
|
|
1589
|
+
"../../../node_modules/should/should.d.ts": {
|
|
1590
|
+
"version": "79da89e1b61cecf107f52a0c2578f31528bc0accdc73bec7325f468a5706a559",
|
|
1591
|
+
"signature": "79da89e1b61cecf107f52a0c2578f31528bc0accdc73bec7325f468a5706a559",
|
|
1592
|
+
"affectsGlobalScope": true
|
|
1593
|
+
},
|
|
1594
|
+
"../../../types/should-sinon/index.d.ts": {
|
|
1595
|
+
"version": "7ecc65228508df150b89095bee857e6306f44fa179c9f625613b1cef9e0c1883",
|
|
1596
|
+
"signature": "7ecc65228508df150b89095bee857e6306f44fa179c9f625613b1cef9e0c1883",
|
|
587
1597
|
"affectsGlobalScope": false
|
|
588
1598
|
},
|
|
589
1599
|
"../../../types/superagent/index.d.ts": {
|
|
@@ -611,11 +1621,6 @@
|
|
|
611
1621
|
"signature": "338bd7c3518b05b4c473971be0e5f8f854aca7cdb00d1b97192c14860f4ebf2f",
|
|
612
1622
|
"affectsGlobalScope": false
|
|
613
1623
|
},
|
|
614
|
-
"../../../node_modules/@types/bn.js/index.d.ts": {
|
|
615
|
-
"version": "bc6dd50ac2fc9a7ca6488811b116bd0ddd606338db0bb97852c8fcf757e2d7f5",
|
|
616
|
-
"signature": "bc6dd50ac2fc9a7ca6488811b116bd0ddd606338db0bb97852c8fcf757e2d7f5",
|
|
617
|
-
"affectsGlobalScope": false
|
|
618
|
-
},
|
|
619
1624
|
"../../../node_modules/@types/connect/index.d.ts": {
|
|
620
1625
|
"version": "6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073",
|
|
621
1626
|
"signature": "6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073",
|
|
@@ -631,16 +1636,6 @@
|
|
|
631
1636
|
"signature": "d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07",
|
|
632
1637
|
"affectsGlobalScope": false
|
|
633
1638
|
},
|
|
634
|
-
"../../../node_modules/base-x/src/index.d.ts": {
|
|
635
|
-
"version": "e91751abb2372a36a90869d36f6ad5d5e69a84c5513ca99d236554e4dd8b9aa1",
|
|
636
|
-
"signature": "e91751abb2372a36a90869d36f6ad5d5e69a84c5513ca99d236554e4dd8b9aa1",
|
|
637
|
-
"affectsGlobalScope": false
|
|
638
|
-
},
|
|
639
|
-
"../../../node_modules/@types/bs58/index.d.ts": {
|
|
640
|
-
"version": "5cbc27193321e6ba10f4e9f3c5519649d9e2716cf103efd7eaa7a89e0f8ed1d4",
|
|
641
|
-
"signature": "5cbc27193321e6ba10f4e9f3c5519649d9e2716cf103efd7eaa7a89e0f8ed1d4",
|
|
642
|
-
"affectsGlobalScope": false
|
|
643
|
-
},
|
|
644
1639
|
"../../../node_modules/@types/range-parser/index.d.ts": {
|
|
645
1640
|
"version": "16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c",
|
|
646
1641
|
"signature": "16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c",
|
|
@@ -666,11 +1661,6 @@
|
|
|
666
1661
|
"signature": "961162d2c2a86091832002f61b810676411eff71be20cfc5676f6e90b07b8235",
|
|
667
1662
|
"affectsGlobalScope": false
|
|
668
1663
|
},
|
|
669
|
-
"../../../node_modules/@types/create-hmac/index.d.ts": {
|
|
670
|
-
"version": "f5011428f5bc27b1e1624e627a9c455185a15b762f23e4cdbdaf82e2dff767b9",
|
|
671
|
-
"signature": "f5011428f5bc27b1e1624e627a9c455185a15b762f23e4cdbdaf82e2dff767b9",
|
|
672
|
-
"affectsGlobalScope": false
|
|
673
|
-
},
|
|
674
1664
|
"../../../node_modules/@types/ms/index.d.ts": {
|
|
675
1665
|
"version": "6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042",
|
|
676
1666
|
"signature": "6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042",
|
|
@@ -906,11 +1896,6 @@
|
|
|
906
1896
|
"signature": "74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57",
|
|
907
1897
|
"affectsGlobalScope": false
|
|
908
1898
|
},
|
|
909
|
-
"../../../node_modules/@types/secp256k1/index.d.ts": {
|
|
910
|
-
"version": "3dce33e7eb25594863b8e615f14a45ab98190d85953436750644212d8a18c066",
|
|
911
|
-
"signature": "3dce33e7eb25594863b8e615f14a45ab98190d85953436750644212d8a18c066",
|
|
912
|
-
"affectsGlobalScope": false
|
|
913
|
-
},
|
|
914
1899
|
"../../../node_modules/@types/serve-static/index.d.ts": {
|
|
915
1900
|
"version": "0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec",
|
|
916
1901
|
"signature": "0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec",
|
|
@@ -1113,51 +2098,1023 @@
|
|
|
1113
2098
|
"lib.dom.d.ts",
|
|
1114
2099
|
"lib.es2019.d.ts"
|
|
1115
2100
|
],
|
|
1116
|
-
"module": 1,
|
|
1117
|
-
"noFallthroughCasesInSwitch": true,
|
|
1118
|
-
"
|
|
1119
|
-
"
|
|
1120
|
-
"
|
|
1121
|
-
"
|
|
1122
|
-
"
|
|
1123
|
-
"
|
|
1124
|
-
"
|
|
1125
|
-
"
|
|
1126
|
-
|
|
1127
|
-
"
|
|
1128
|
-
"
|
|
2101
|
+
"module": 1,
|
|
2102
|
+
"noFallthroughCasesInSwitch": true,
|
|
2103
|
+
"noImplicitThis": true,
|
|
2104
|
+
"resolveJsonModule": true,
|
|
2105
|
+
"skipLibCheck": true,
|
|
2106
|
+
"strictBindCallApply": true,
|
|
2107
|
+
"strictFunctionTypes": true,
|
|
2108
|
+
"strictNullChecks": true,
|
|
2109
|
+
"strictPropertyInitialization": false,
|
|
2110
|
+
"target": 6,
|
|
2111
|
+
"typeRoots": [
|
|
2112
|
+
"../../../types",
|
|
2113
|
+
"../node_modules/@types",
|
|
2114
|
+
"../../../node_modules/@types"
|
|
2115
|
+
],
|
|
2116
|
+
"outDir": "./",
|
|
2117
|
+
"rootDir": "..",
|
|
2118
|
+
"esModuleInterop": true,
|
|
2119
|
+
"incremental": true,
|
|
2120
|
+
"configFilePath": "../tsconfig.json"
|
|
2121
|
+
},
|
|
2122
|
+
"referencedMap": {
|
|
2123
|
+
"../src/account-lib/basecoin/basekeypair.ts": [
|
|
2124
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2125
|
+
"../src/account-lib/basecoin/enum.ts"
|
|
2126
|
+
],
|
|
2127
|
+
"../src/account-lib/basecoin/basetransaction.ts": [
|
|
2128
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2129
|
+
"../../statics/dist/src/index.d.ts",
|
|
2130
|
+
"../src/account-lib/basecoin/enum.ts",
|
|
2131
|
+
"../src/account-lib/basecoin/errors.ts",
|
|
2132
|
+
"../src/account-lib/basecoin/iface.ts"
|
|
2133
|
+
],
|
|
2134
|
+
"../src/account-lib/basecoin/basetransactionbuilder.ts": [
|
|
2135
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2136
|
+
"../../../node_modules/bignumber.js/bignumber.d.ts",
|
|
2137
|
+
"../../statics/dist/src/index.d.ts",
|
|
2138
|
+
"../src/account-lib/basecoin/basetransaction.ts",
|
|
2139
|
+
"../src/account-lib/basecoin/errors.ts",
|
|
2140
|
+
"../src/account-lib/basecoin/iface.ts"
|
|
2141
|
+
],
|
|
2142
|
+
"../src/account-lib/basecoin/basetransactionbuilderfactory.ts": [
|
|
2143
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2144
|
+
"../../statics/dist/src/index.d.ts"
|
|
2145
|
+
],
|
|
2146
|
+
"../src/account-lib/basecoin/baseutils.ts": [
|
|
2147
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2148
|
+
],
|
|
2149
|
+
"../src/account-lib/basecoin/blskeypair.ts": [
|
|
2150
|
+
"../../../node_modules/@types/node/assert.d.ts",
|
|
2151
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2152
|
+
"../src/account-lib/basecoin/basekeypair.ts",
|
|
2153
|
+
"../src/account-lib/basecoin/enum.ts",
|
|
2154
|
+
"../src/account-lib/basecoin/errors.ts",
|
|
2155
|
+
"../src/account-lib/basecoin/iface.ts",
|
|
2156
|
+
"../src/account-lib/util/crypto.ts"
|
|
2157
|
+
],
|
|
2158
|
+
"../src/account-lib/basecoin/ed25519keypair.ts": [
|
|
2159
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2160
|
+
"../../../node_modules/tweetnacl/nacl.d.ts",
|
|
2161
|
+
"../src/account-lib/basecoin/basekeypair.ts",
|
|
2162
|
+
"../src/account-lib/basecoin/enum.ts",
|
|
2163
|
+
"../src/account-lib/basecoin/iface.ts",
|
|
2164
|
+
"../src/account-lib/util/crypto.ts",
|
|
2165
|
+
"../src/account-lib/util/ed25519keyderiver.ts"
|
|
2166
|
+
],
|
|
2167
|
+
"../src/account-lib/basecoin/enum.ts": [
|
|
2168
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2169
|
+
],
|
|
2170
|
+
"../src/account-lib/basecoin/errors.ts": [
|
|
2171
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2172
|
+
],
|
|
2173
|
+
"../src/account-lib/basecoin/iface.ts": [
|
|
2174
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2175
|
+
"../src/account-lib/basecoin/basetransactionbuilder.ts",
|
|
2176
|
+
"../src/account-lib/basecoin/basetransactionbuilderfactory.ts",
|
|
2177
|
+
"../src/bitgo/index.ts"
|
|
2178
|
+
],
|
|
2179
|
+
"../src/account-lib/basecoin/index.ts": [
|
|
2180
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2181
|
+
"../src/account-lib/basecoin/basekeypair.ts",
|
|
2182
|
+
"../src/account-lib/basecoin/basetransaction.ts",
|
|
2183
|
+
"../src/account-lib/basecoin/basetransactionbuilder.ts",
|
|
2184
|
+
"../src/account-lib/basecoin/basetransactionbuilderfactory.ts",
|
|
2185
|
+
"../src/account-lib/basecoin/baseutils.ts",
|
|
2186
|
+
"../src/account-lib/basecoin/blskeypair.ts",
|
|
2187
|
+
"../src/account-lib/basecoin/ed25519keypair.ts",
|
|
2188
|
+
"../src/account-lib/basecoin/enum.ts",
|
|
2189
|
+
"../src/account-lib/basecoin/errors.ts",
|
|
2190
|
+
"../src/account-lib/basecoin/iface.ts",
|
|
2191
|
+
"../src/account-lib/basecoin/secp256k1extendedkeypair.ts"
|
|
2192
|
+
],
|
|
2193
|
+
"../src/account-lib/basecoin/secp256k1extendedkeypair.ts": [
|
|
2194
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2195
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
2196
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
2197
|
+
"../src/account-lib/basecoin/basekeypair.ts",
|
|
2198
|
+
"../src/account-lib/basecoin/enum.ts",
|
|
2199
|
+
"../src/account-lib/basecoin/errors.ts",
|
|
2200
|
+
"../src/account-lib/basecoin/iface.ts",
|
|
2201
|
+
"../src/account-lib/util/crypto.ts"
|
|
2202
|
+
],
|
|
2203
|
+
"../src/account-lib/index.ts": [
|
|
2204
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2205
|
+
"../src/account-lib/basecoin/index.ts",
|
|
2206
|
+
"../src/account-lib/mpc/index.ts",
|
|
2207
|
+
"../src/account-lib/util/crypto.ts",
|
|
2208
|
+
"../src/account-lib/util/ed25519keyderiver.ts"
|
|
2209
|
+
],
|
|
2210
|
+
"../src/account-lib/mpc/curves/basecurve.ts": [
|
|
2211
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2212
|
+
],
|
|
2213
|
+
"../src/account-lib/mpc/curves/ed25519.ts": [
|
|
2214
|
+
"../../../node_modules/@types/node/crypto.d.ts",
|
|
2215
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2216
|
+
"../src/account-lib/mpc/curves/basecurve.ts",
|
|
2217
|
+
"../src/account-lib/mpc/util.ts"
|
|
2218
|
+
],
|
|
2219
|
+
"../src/account-lib/mpc/curves/index.ts": [
|
|
2220
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2221
|
+
"../src/account-lib/mpc/curves/basecurve.ts",
|
|
2222
|
+
"../src/account-lib/mpc/curves/ed25519.ts",
|
|
2223
|
+
"../src/account-lib/mpc/curves/secp256k1.ts"
|
|
2224
|
+
],
|
|
2225
|
+
"../src/account-lib/mpc/curves/secp256k1.ts": [
|
|
2226
|
+
"../../../node_modules/@noble/secp256k1/lib/index.d.ts",
|
|
2227
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2228
|
+
"../src/account-lib/mpc/curves/basecurve.ts",
|
|
2229
|
+
"../src/account-lib/mpc/util.ts"
|
|
2230
|
+
],
|
|
2231
|
+
"../src/account-lib/mpc/hdtree.ts": [
|
|
2232
|
+
"../../../node_modules/@types/node/crypto.d.ts",
|
|
2233
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2234
|
+
"../src/account-lib/mpc/curves/index.ts",
|
|
2235
|
+
"../src/account-lib/mpc/util.ts"
|
|
2236
|
+
],
|
|
2237
|
+
"../src/account-lib/mpc/index.ts": [
|
|
2238
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2239
|
+
"../src/account-lib/mpc/curves/index.ts",
|
|
2240
|
+
"../src/account-lib/mpc/hdtree.ts",
|
|
2241
|
+
"../src/account-lib/mpc/tss/index.ts",
|
|
2242
|
+
"../src/account-lib/mpc/util.ts"
|
|
2243
|
+
],
|
|
2244
|
+
"../src/account-lib/mpc/shamir.ts": [
|
|
2245
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2246
|
+
"../src/account-lib/mpc/curves/index.ts",
|
|
2247
|
+
"../src/account-lib/mpc/util.ts"
|
|
2248
|
+
],
|
|
2249
|
+
"../src/account-lib/mpc/tss/ecdsa/ecdsa.ts": [
|
|
2250
|
+
"../../../node_modules/@types/node/crypto.d.ts",
|
|
2251
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2252
|
+
"../../../node_modules/paillier-bigint/types/index.d.ts",
|
|
2253
|
+
"../src/account-lib/mpc/curves/index.ts",
|
|
2254
|
+
"../src/account-lib/mpc/shamir.ts",
|
|
2255
|
+
"../src/account-lib/mpc/tss/ecdsa/types.ts",
|
|
2256
|
+
"../src/account-lib/mpc/util.ts",
|
|
2257
|
+
"../src/account-lib/util/crypto.ts"
|
|
2258
|
+
],
|
|
2259
|
+
"../src/account-lib/mpc/tss/ecdsa/index.ts": [
|
|
2260
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2261
|
+
"../src/account-lib/mpc/tss/ecdsa/ecdsa.ts",
|
|
2262
|
+
"../src/account-lib/mpc/tss/ecdsa/types.ts"
|
|
2263
|
+
],
|
|
2264
|
+
"../src/account-lib/mpc/tss/ecdsa/types.ts": [
|
|
2265
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2266
|
+
],
|
|
2267
|
+
"../src/account-lib/mpc/tss/eddsa/eddsa.ts": [
|
|
2268
|
+
"../../../node_modules/@types/node/crypto.d.ts",
|
|
2269
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2270
|
+
"../src/account-lib/mpc/curves/index.ts",
|
|
2271
|
+
"../src/account-lib/mpc/hdtree.ts",
|
|
2272
|
+
"../src/account-lib/mpc/shamir.ts",
|
|
2273
|
+
"../src/account-lib/mpc/tss/eddsa/types.ts",
|
|
2274
|
+
"../src/account-lib/mpc/util.ts"
|
|
2275
|
+
],
|
|
2276
|
+
"../src/account-lib/mpc/tss/eddsa/index.ts": [
|
|
2277
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2278
|
+
"../src/account-lib/mpc/tss/eddsa/eddsa.ts",
|
|
2279
|
+
"../src/account-lib/mpc/tss/eddsa/types.ts"
|
|
2280
|
+
],
|
|
2281
|
+
"../src/account-lib/mpc/tss/eddsa/types.ts": [
|
|
2282
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2283
|
+
],
|
|
2284
|
+
"../src/account-lib/mpc/tss/index.ts": [
|
|
2285
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2286
|
+
"../src/account-lib/mpc/tss/ecdsa/index.ts",
|
|
2287
|
+
"../src/account-lib/mpc/tss/eddsa/index.ts",
|
|
2288
|
+
"../src/account-lib/mpc/tss/eddsa/types.ts"
|
|
2289
|
+
],
|
|
2290
|
+
"../src/account-lib/mpc/util.ts": [
|
|
2291
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2292
|
+
],
|
|
2293
|
+
"../src/account-lib/util/crypto.ts": [
|
|
2294
|
+
"../../../node_modules/@stablelib/hex/lib/hex.d.ts",
|
|
2295
|
+
"../../../node_modules/@types/bs58/index.d.ts",
|
|
2296
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2297
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
2298
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
2299
|
+
"../../../node_modules/noble-bls12-381/index.d.ts",
|
|
2300
|
+
"../../../node_modules/tweetnacl/nacl.d.ts",
|
|
2301
|
+
"../src/account-lib/basecoin/iface.ts"
|
|
2302
|
+
],
|
|
2303
|
+
"../src/account-lib/util/ed25519keyderiver.ts": [
|
|
2304
|
+
"../../../node_modules/@types/create-hmac/index.d.ts",
|
|
2305
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2306
|
+
],
|
|
2307
|
+
"../src/api/bip32path.ts": [
|
|
2308
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2309
|
+
],
|
|
2310
|
+
"../src/api/index.ts": [
|
|
2311
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2312
|
+
"../src/api/bip32path.ts",
|
|
2313
|
+
"../src/api/types.ts"
|
|
2314
|
+
],
|
|
2315
|
+
"../src/api/types.ts": [
|
|
2316
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2317
|
+
"../../../node_modules/@types/superagent/index.d.ts"
|
|
2318
|
+
],
|
|
2319
|
+
"../src/bitgo/basecoin/basecoin.ts": [
|
|
2320
|
+
"../../../node_modules/@types/node/crypto.d.ts",
|
|
2321
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2322
|
+
"../../../node_modules/bignumber.js/bignumber.d.ts",
|
|
2323
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
2324
|
+
"../../utxo-lib/dist/src/index.d.ts",
|
|
2325
|
+
"../src/account-lib/index.ts",
|
|
2326
|
+
"../src/bitgo/basecoin/ibasecoin.ts",
|
|
2327
|
+
"../src/bitgo/bip32util.ts",
|
|
2328
|
+
"../src/bitgo/bitgobase.ts",
|
|
2329
|
+
"../src/bitgo/enterprise/index.ts",
|
|
2330
|
+
"../src/bitgo/keychain/index.ts",
|
|
2331
|
+
"../src/bitgo/market/index.ts",
|
|
2332
|
+
"../src/bitgo/pendingapproval/index.ts",
|
|
2333
|
+
"../src/bitgo/recovery/index.ts",
|
|
2334
|
+
"../src/bitgo/wallet/index.ts",
|
|
2335
|
+
"../src/bitgo/webhook/index.ts"
|
|
2336
|
+
],
|
|
2337
|
+
"../src/bitgo/basecoin/ibasecoin.ts": [
|
|
2338
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2339
|
+
"../src/api/index.ts",
|
|
2340
|
+
"../src/bitgo/enterprise/index.ts",
|
|
2341
|
+
"../src/bitgo/keychain/index.ts",
|
|
2342
|
+
"../src/bitgo/market/index.ts",
|
|
2343
|
+
"../src/bitgo/pendingapproval/index.ts",
|
|
2344
|
+
"../src/bitgo/recovery/index.ts",
|
|
2345
|
+
"../src/bitgo/utils/index.ts",
|
|
2346
|
+
"../src/bitgo/wallet/index.ts",
|
|
2347
|
+
"../src/bitgo/webhook/iwebhooks.ts"
|
|
2348
|
+
],
|
|
2349
|
+
"../src/bitgo/basecoin/index.ts": [
|
|
2350
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2351
|
+
"../src/bitgo/basecoin/basecoin.ts",
|
|
2352
|
+
"../src/bitgo/basecoin/ibasecoin.ts"
|
|
2353
|
+
],
|
|
2354
|
+
"../src/bitgo/bip32util.ts": [
|
|
2355
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2356
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2357
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
2358
|
+
"../../../node_modules/bitcoinjs-message/index.d.ts",
|
|
2359
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
2360
|
+
],
|
|
2361
|
+
"../src/bitgo/bitcoin.ts": [
|
|
2362
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2363
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
2364
|
+
"../../utxo-lib/dist/src/index.d.ts",
|
|
2365
|
+
"../src/bitgo/types.ts",
|
|
2366
|
+
"../src/common.ts"
|
|
2367
|
+
],
|
|
2368
|
+
"../src/bitgo/bitgobase.ts": [
|
|
2369
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2370
|
+
"../src/api/index.ts",
|
|
2371
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2372
|
+
"../src/bitgo/environments.ts"
|
|
2373
|
+
],
|
|
2374
|
+
"../src/bitgo/coinfactory.ts": [
|
|
2375
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2376
|
+
"../../statics/dist/src/index.d.ts",
|
|
2377
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2378
|
+
"../src/bitgo/bitgobase.ts",
|
|
2379
|
+
"../src/bitgo/errors.ts"
|
|
2380
|
+
],
|
|
2381
|
+
"../src/bitgo/config.ts": [
|
|
2382
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2383
|
+
],
|
|
2384
|
+
"../src/bitgo/ecdh.ts": [
|
|
2385
|
+
"../../../node_modules/@types/node/assert.d.ts",
|
|
2386
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2387
|
+
"../../../node_modules/@types/secp256k1/index.d.ts",
|
|
2388
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
2389
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
2390
|
+
],
|
|
2391
|
+
"../src/bitgo/enterprise/enterprise.ts": [
|
|
2392
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2393
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2394
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2395
|
+
"../src/bitgo/bitgobase.ts",
|
|
2396
|
+
"../src/bitgo/enterprise/index.ts",
|
|
2397
|
+
"../src/bitgo/internal/internal.ts",
|
|
2398
|
+
"../src/bitgo/trading/index.ts",
|
|
2399
|
+
"../src/bitgo/wallet/index.ts"
|
|
2400
|
+
],
|
|
2401
|
+
"../src/bitgo/enterprise/enterprises.ts": [
|
|
2402
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2403
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2404
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2405
|
+
"../src/bitgo/bitgobase.ts",
|
|
2406
|
+
"../src/bitgo/enterprise/enterprise.ts",
|
|
2407
|
+
"../src/bitgo/enterprise/ienterprises.ts"
|
|
2408
|
+
],
|
|
2409
|
+
"../src/bitgo/enterprise/ienterprise.ts": [
|
|
2410
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2411
|
+
"../src/bitgo/trading/index.ts",
|
|
2412
|
+
"../src/bitgo/wallet/index.ts"
|
|
2413
|
+
],
|
|
2414
|
+
"../src/bitgo/enterprise/ienterprises.ts": [
|
|
2415
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2416
|
+
"../src/bitgo/enterprise/ienterprise.ts"
|
|
2417
|
+
],
|
|
2418
|
+
"../src/bitgo/enterprise/index.ts": [
|
|
2419
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2420
|
+
"../src/bitgo/enterprise/enterprise.ts",
|
|
2421
|
+
"../src/bitgo/enterprise/enterprises.ts",
|
|
2422
|
+
"../src/bitgo/enterprise/ienterprise.ts",
|
|
2423
|
+
"../src/bitgo/enterprise/ienterprises.ts"
|
|
2424
|
+
],
|
|
2425
|
+
"../src/bitgo/environments.ts": [
|
|
2426
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2427
|
+
"../src/bitgo/types.ts"
|
|
2428
|
+
],
|
|
2429
|
+
"../src/bitgo/errors.ts": [
|
|
2430
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2431
|
+
"../src/bitgojserror.ts"
|
|
2432
|
+
],
|
|
2433
|
+
"../src/bitgo/index.ts": [
|
|
2434
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2435
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2436
|
+
"../src/bitgo/bip32util.ts",
|
|
2437
|
+
"../src/bitgo/bitcoin.ts",
|
|
2438
|
+
"../src/bitgo/bitgobase.ts",
|
|
2439
|
+
"../src/bitgo/coinfactory.ts",
|
|
2440
|
+
"../src/bitgo/config.ts",
|
|
2441
|
+
"../src/bitgo/ecdh.ts",
|
|
2442
|
+
"../src/bitgo/enterprise/index.ts",
|
|
2443
|
+
"../src/bitgo/environments.ts",
|
|
2444
|
+
"../src/bitgo/errors.ts",
|
|
2445
|
+
"../src/bitgo/internal/index.ts",
|
|
2446
|
+
"../src/bitgo/keychain/index.ts",
|
|
2447
|
+
"../src/bitgo/market/index.ts",
|
|
2448
|
+
"../src/bitgo/pendingapproval/index.ts",
|
|
2449
|
+
"../src/bitgo/recovery/index.ts",
|
|
2450
|
+
"../src/bitgo/trading/index.ts",
|
|
2451
|
+
"../src/bitgo/tss/index.ts",
|
|
2452
|
+
"../src/bitgo/types.ts",
|
|
2453
|
+
"../src/bitgo/utils/index.ts",
|
|
2454
|
+
"../src/bitgo/wallet/index.ts",
|
|
2455
|
+
"../src/bitgo/webhook/index.ts"
|
|
2456
|
+
],
|
|
2457
|
+
"../src/bitgo/internal/index.ts": [
|
|
2458
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2459
|
+
"../src/bitgo/internal/internal.ts",
|
|
2460
|
+
"../src/bitgo/internal/keycard.ts"
|
|
2461
|
+
],
|
|
2462
|
+
"../src/bitgo/internal/internal.ts": [
|
|
2463
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2464
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2465
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2466
|
+
"../src/bitgo/bitgobase.ts"
|
|
2467
|
+
],
|
|
2468
|
+
"../src/bitgo/internal/keycard.ts": [
|
|
2469
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2470
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2471
|
+
"../src/bitgo/keychain/index.ts"
|
|
2472
|
+
],
|
|
2473
|
+
"../src/bitgo/keychain/ikeychains.ts": [
|
|
2474
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2475
|
+
"../src/api/index.ts",
|
|
2476
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2477
|
+
"../src/bitgo/wallet/index.ts"
|
|
2478
|
+
],
|
|
2479
|
+
"../src/bitgo/keychain/index.ts": [
|
|
2480
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2481
|
+
"../src/bitgo/keychain/ikeychains.ts",
|
|
2482
|
+
"../src/bitgo/keychain/keychains.ts"
|
|
2483
|
+
],
|
|
2484
|
+
"../src/bitgo/keychain/keychains.ts": [
|
|
2485
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2486
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2487
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2488
|
+
"../src/bitgo/bitgobase.ts",
|
|
2489
|
+
"../src/bitgo/keychain/ikeychains.ts",
|
|
2490
|
+
"../src/bitgo/utils/index.ts",
|
|
2491
|
+
"../src/common.ts"
|
|
2492
|
+
],
|
|
2493
|
+
"../src/bitgo/market/imarkets.ts": [
|
|
2494
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2495
|
+
],
|
|
2496
|
+
"../src/bitgo/market/index.ts": [
|
|
2497
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2498
|
+
"../src/bitgo/market/imarkets.ts",
|
|
2499
|
+
"../src/bitgo/market/markets.ts"
|
|
2500
|
+
],
|
|
2501
|
+
"../src/bitgo/market/markets.ts": [
|
|
2502
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2503
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2504
|
+
"../src/bitgo/bitgobase.ts",
|
|
2505
|
+
"../src/bitgo/market/index.ts",
|
|
2506
|
+
"../src/common.ts"
|
|
2507
|
+
],
|
|
2508
|
+
"../src/bitgo/pendingapproval/index.ts": [
|
|
2509
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2510
|
+
"../src/bitgo/pendingapproval/ipendingapproval.ts",
|
|
2511
|
+
"../src/bitgo/pendingapproval/ipendingapprovals.ts",
|
|
2512
|
+
"../src/bitgo/pendingapproval/pendingapproval.ts",
|
|
2513
|
+
"../src/bitgo/pendingapproval/pendingapprovals.ts"
|
|
2514
|
+
],
|
|
2515
|
+
"../src/bitgo/pendingapproval/ipendingapproval.ts": [
|
|
2516
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2517
|
+
"../src/api/index.ts"
|
|
2518
|
+
],
|
|
2519
|
+
"../src/bitgo/pendingapproval/ipendingapprovals.ts": [
|
|
2520
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2521
|
+
"../src/bitgo/pendingapproval/ipendingapproval.ts"
|
|
2522
|
+
],
|
|
2523
|
+
"../src/bitgo/pendingapproval/pendingapproval.ts": [
|
|
2524
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2525
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2526
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2527
|
+
"../src/bitgo/bitgobase.ts",
|
|
2528
|
+
"../src/bitgo/pendingapproval/index.ts",
|
|
2529
|
+
"../src/bitgo/utils/index.ts",
|
|
2530
|
+
"../src/bitgo/wallet/index.ts",
|
|
2531
|
+
"../src/common.ts"
|
|
2532
|
+
],
|
|
2533
|
+
"../src/bitgo/pendingapproval/pendingapprovals.ts": [
|
|
2534
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2535
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2536
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2537
|
+
"../src/bitgo/bitgobase.ts",
|
|
2538
|
+
"../src/bitgo/pendingapproval/index.ts",
|
|
2539
|
+
"../src/common.ts"
|
|
2540
|
+
],
|
|
2541
|
+
"../src/bitgo/recovery/index.ts": [
|
|
2542
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2543
|
+
"../src/bitgo/recovery/initiate.ts"
|
|
2544
|
+
],
|
|
2545
|
+
"../src/bitgo/recovery/initiate.ts": [
|
|
2546
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2547
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
2548
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2549
|
+
"../src/bitgo/bitgobase.ts",
|
|
2550
|
+
"../src/bitgo/config.ts"
|
|
2551
|
+
],
|
|
2552
|
+
"../src/bitgo/trading/affirmation.ts": [
|
|
2553
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2554
|
+
"../src/bitgo/bitgobase.ts",
|
|
2555
|
+
"../src/bitgo/trading/index.ts"
|
|
2556
|
+
],
|
|
2557
|
+
"../src/bitgo/trading/affirmations.ts": [
|
|
2558
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2559
|
+
"../src/bitgo/bitgobase.ts",
|
|
2560
|
+
"../src/bitgo/trading/index.ts"
|
|
2561
|
+
],
|
|
2562
|
+
"../src/bitgo/trading/iaffirmation.ts": [
|
|
2563
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2564
|
+
"../src/bitgo/trading/payload.ts"
|
|
2565
|
+
],
|
|
2566
|
+
"../src/bitgo/trading/iaffirmations.ts": [
|
|
2567
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2568
|
+
"../src/bitgo/trading/iaffirmation.ts"
|
|
2569
|
+
],
|
|
2570
|
+
"../src/bitgo/trading/index.ts": [
|
|
2571
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2572
|
+
"../src/bitgo/trading/affirmation.ts",
|
|
2573
|
+
"../src/bitgo/trading/affirmations.ts",
|
|
2574
|
+
"../src/bitgo/trading/iaffirmation.ts",
|
|
2575
|
+
"../src/bitgo/trading/iaffirmations.ts",
|
|
2576
|
+
"../src/bitgo/trading/isettlement.ts",
|
|
2577
|
+
"../src/bitgo/trading/isettlements.ts",
|
|
2578
|
+
"../src/bitgo/trading/itradingaccount.ts",
|
|
2579
|
+
"../src/bitgo/trading/itradingpartner.ts",
|
|
2580
|
+
"../src/bitgo/trading/itradingpartners.ts",
|
|
2581
|
+
"../src/bitgo/trading/lock.ts",
|
|
2582
|
+
"../src/bitgo/trading/payload.ts",
|
|
2583
|
+
"../src/bitgo/trading/settlement.ts",
|
|
2584
|
+
"../src/bitgo/trading/settlements.ts",
|
|
2585
|
+
"../src/bitgo/trading/trade.ts",
|
|
2586
|
+
"../src/bitgo/trading/tradingaccount.ts",
|
|
2587
|
+
"../src/bitgo/trading/tradingpartner.ts",
|
|
2588
|
+
"../src/bitgo/trading/tradingpartners.ts"
|
|
2589
|
+
],
|
|
2590
|
+
"../src/bitgo/trading/isettlement.ts": [
|
|
2591
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2592
|
+
"../src/bitgo/trading/iaffirmation.ts",
|
|
2593
|
+
"../src/bitgo/trading/trade.ts"
|
|
2594
|
+
],
|
|
2595
|
+
"../src/bitgo/trading/isettlements.ts": [
|
|
2596
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2597
|
+
"../src/bitgo/trading/isettlement.ts",
|
|
2598
|
+
"../src/bitgo/trading/payload.ts",
|
|
2599
|
+
"../src/bitgo/trading/trade.ts"
|
|
2600
|
+
],
|
|
2601
|
+
"../src/bitgo/trading/itradingaccount.ts": [
|
|
2602
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2603
|
+
"../src/bitgo/trading/iaffirmations.ts",
|
|
2604
|
+
"../src/bitgo/trading/isettlements.ts",
|
|
2605
|
+
"../src/bitgo/trading/itradingpartners.ts",
|
|
2606
|
+
"../src/bitgo/trading/payload.ts"
|
|
2607
|
+
],
|
|
2608
|
+
"../src/bitgo/trading/itradingpartner.ts": [
|
|
2609
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2610
|
+
],
|
|
2611
|
+
"../src/bitgo/trading/itradingpartners.ts": [
|
|
2612
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2613
|
+
"../src/bitgo/trading/itradingpartner.ts"
|
|
2614
|
+
],
|
|
2615
|
+
"../src/bitgo/trading/lock.ts": [
|
|
2616
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2617
|
+
],
|
|
2618
|
+
"../src/bitgo/trading/payload.ts": [
|
|
2619
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2620
|
+
],
|
|
2621
|
+
"../src/bitgo/trading/settlement.ts": [
|
|
2622
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2623
|
+
"../src/bitgo/bitgobase.ts",
|
|
2624
|
+
"../src/bitgo/trading/index.ts"
|
|
2625
|
+
],
|
|
2626
|
+
"../src/bitgo/trading/settlements.ts": [
|
|
2627
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2628
|
+
"../src/bitgo/bitgobase.ts",
|
|
2629
|
+
"../src/bitgo/trading/index.ts"
|
|
2630
|
+
],
|
|
2631
|
+
"../src/bitgo/trading/trade.ts": [
|
|
2632
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2633
|
+
],
|
|
2634
|
+
"../src/bitgo/trading/tradingaccount.ts": [
|
|
2635
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2636
|
+
"../../../node_modules/bignumber.js/bignumber.d.ts",
|
|
2637
|
+
"../src/bitgo/bitgobase.ts",
|
|
2638
|
+
"../src/bitgo/trading/index.ts",
|
|
2639
|
+
"../src/bitgo/wallet/index.ts"
|
|
2640
|
+
],
|
|
2641
|
+
"../src/bitgo/trading/tradingpartner.ts": [
|
|
2642
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2643
|
+
"../src/bitgo/bitgobase.ts",
|
|
2644
|
+
"../src/bitgo/trading/index.ts"
|
|
2645
|
+
],
|
|
2646
|
+
"../src/bitgo/trading/tradingpartners.ts": [
|
|
2647
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2648
|
+
"../src/bitgo/bitgobase.ts",
|
|
2649
|
+
"../src/bitgo/trading/index.ts"
|
|
2650
|
+
],
|
|
2651
|
+
"../src/bitgo/tss/ecdsa/ecdsa.ts": [
|
|
2652
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2653
|
+
"../src/account-lib/mpc/tss/index.ts",
|
|
2654
|
+
"../src/bitgo/tss/ecdsa/types.ts",
|
|
2655
|
+
"../src/bitgo/utils/index.ts"
|
|
2656
|
+
],
|
|
2657
|
+
"../src/bitgo/tss/ecdsa/index.ts": [
|
|
2658
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2659
|
+
"../src/bitgo/tss/ecdsa/ecdsa.ts",
|
|
2660
|
+
"../src/bitgo/tss/ecdsa/types.ts"
|
|
2661
|
+
],
|
|
2662
|
+
"../src/bitgo/tss/ecdsa/types.ts": [
|
|
2663
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2664
|
+
"../src/account-lib/mpc/tss/index.ts"
|
|
2665
|
+
],
|
|
2666
|
+
"../src/bitgo/tss/eddsa/eddsa.ts": [
|
|
2667
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2668
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2669
|
+
"../src/account-lib/mpc/tss/index.ts",
|
|
2670
|
+
"../src/bitgo/bitgobase.ts",
|
|
2671
|
+
"../src/bitgo/tss/eddsa/types.ts",
|
|
2672
|
+
"../src/bitgo/tss/types.ts",
|
|
2673
|
+
"../src/bitgo/utils/index.ts"
|
|
2674
|
+
],
|
|
2675
|
+
"../src/bitgo/tss/eddsa/index.ts": [
|
|
2676
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2677
|
+
"../src/bitgo/tss/eddsa/eddsa.ts",
|
|
2678
|
+
"../src/bitgo/tss/eddsa/types.ts"
|
|
1129
2679
|
],
|
|
1130
|
-
"
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
"
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
2680
|
+
"../src/bitgo/tss/eddsa/types.ts": [
|
|
2681
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2682
|
+
"../src/account-lib/mpc/tss/index.ts"
|
|
2683
|
+
],
|
|
2684
|
+
"../src/bitgo/tss/index.ts": [
|
|
2685
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2686
|
+
"../src/bitgo/tss/ecdsa/index.ts",
|
|
2687
|
+
"../src/bitgo/tss/eddsa/index.ts",
|
|
2688
|
+
"../src/bitgo/tss/types.ts"
|
|
2689
|
+
],
|
|
2690
|
+
"../src/bitgo/tss/types.ts": [
|
|
2691
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2692
|
+
],
|
|
2693
|
+
"../src/bitgo/types.ts": [
|
|
2694
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2695
|
+
],
|
|
2696
|
+
"../src/bitgo/utils/abstractutxocoinutil.ts": [
|
|
2697
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2698
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
2699
|
+
],
|
|
2700
|
+
"../src/bitgo/utils/blsutils.ts": [
|
|
2701
|
+
"../../../node_modules/@types/node/crypto.d.ts",
|
|
2702
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2703
|
+
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
2704
|
+
"../src/account-lib/basecoin/index.ts",
|
|
2705
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2706
|
+
"../src/bitgo/bitgobase.ts",
|
|
2707
|
+
"../src/bitgo/keychain/index.ts",
|
|
2708
|
+
"../src/bitgo/utils/iblsutils.ts",
|
|
2709
|
+
"../src/bitgo/utils/mpcutils.ts"
|
|
2710
|
+
],
|
|
2711
|
+
"../src/bitgo/utils/iblsutils.ts": [
|
|
2712
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2713
|
+
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
2714
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2715
|
+
"../src/bitgo/keychain/index.ts"
|
|
2716
|
+
],
|
|
2717
|
+
"../src/bitgo/utils/index.ts": [
|
|
2718
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2719
|
+
"../src/bitgo/utils/abstractutxocoinutil.ts",
|
|
2720
|
+
"../src/bitgo/utils/blsutils.ts",
|
|
2721
|
+
"../src/bitgo/utils/iblsutils.ts",
|
|
2722
|
+
"../src/bitgo/utils/mpcutils.ts",
|
|
2723
|
+
"../src/bitgo/utils/opengpgutils.ts",
|
|
2724
|
+
"../src/bitgo/utils/promise-utils.ts",
|
|
2725
|
+
"../src/bitgo/utils/triple.ts",
|
|
2726
|
+
"../src/bitgo/utils/tss/index.ts",
|
|
2727
|
+
"../src/bitgo/utils/util.ts"
|
|
2728
|
+
],
|
|
2729
|
+
"../src/bitgo/utils/mpcutils.ts": [
|
|
2730
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2731
|
+
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
2732
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2733
|
+
"../src/bitgo/bitgobase.ts",
|
|
2734
|
+
"../src/bitgo/keychain/index.ts",
|
|
2735
|
+
"../src/bitgo/utils/opengpgutils.ts"
|
|
2736
|
+
],
|
|
2737
|
+
"../src/bitgo/utils/opengpgutils.ts": [
|
|
2738
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2739
|
+
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
2740
|
+
"../src/bitgo/bitgobase.ts"
|
|
2741
|
+
],
|
|
2742
|
+
"../src/bitgo/utils/promise-utils.ts": [
|
|
2743
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2744
|
+
],
|
|
2745
|
+
"../src/bitgo/utils/triple.ts": [
|
|
2746
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2747
|
+
],
|
|
2748
|
+
"../src/bitgo/utils/tss/eddsa/eddsa.ts": [
|
|
2749
|
+
"../../../node_modules/@types/bs58/index.d.ts",
|
|
2750
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2751
|
+
"../../../node_modules/@types/node/crypto.d.ts",
|
|
2752
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2753
|
+
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
2754
|
+
"../src/account-lib/mpc/hdtree.ts",
|
|
2755
|
+
"../src/account-lib/mpc/tss/index.ts",
|
|
2756
|
+
"../src/api/index.ts",
|
|
2757
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2758
|
+
"../src/bitgo/bitgobase.ts",
|
|
2759
|
+
"../src/bitgo/keychain/index.ts",
|
|
2760
|
+
"../src/bitgo/tss/index.ts",
|
|
2761
|
+
"../src/bitgo/utils/mpcutils.ts",
|
|
2762
|
+
"../src/bitgo/utils/opengpgutils.ts",
|
|
2763
|
+
"../src/bitgo/utils/tss/eddsa/types.ts",
|
|
2764
|
+
"../src/bitgo/wallet/index.ts"
|
|
2765
|
+
],
|
|
2766
|
+
"../src/bitgo/utils/tss/eddsa/index.ts": [
|
|
2767
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2768
|
+
"../src/bitgo/utils/tss/eddsa/eddsa.ts",
|
|
2769
|
+
"../src/bitgo/utils/tss/eddsa/types.ts"
|
|
2770
|
+
],
|
|
2771
|
+
"../src/bitgo/utils/tss/eddsa/types.ts": [
|
|
2772
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2773
|
+
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
2774
|
+
"../src/account-lib/mpc/tss/index.ts",
|
|
2775
|
+
"../src/api/index.ts",
|
|
2776
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2777
|
+
"../src/bitgo/keychain/index.ts",
|
|
2778
|
+
"../src/bitgo/wallet/index.ts"
|
|
2779
|
+
],
|
|
2780
|
+
"../src/bitgo/utils/tss/index.ts": [
|
|
2781
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2782
|
+
"../src/bitgo/utils/tss/eddsa/index.ts"
|
|
2783
|
+
],
|
|
2784
|
+
"../src/bitgo/utils/util.ts": [
|
|
2785
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2786
|
+
"../../../node_modules/@types/node/crypto.d.ts",
|
|
2787
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2788
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
2789
|
+
"../../../node_modules/ethereumjs-util/dist/index.d.ts",
|
|
2790
|
+
"../src/api/index.ts",
|
|
2791
|
+
"../src/bitgo/errors.ts"
|
|
2792
|
+
],
|
|
2793
|
+
"../src/bitgo/wallet/index.ts": [
|
|
2794
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2795
|
+
"../src/bitgo/wallet/iwallet.ts",
|
|
2796
|
+
"../src/bitgo/wallet/iwallets.ts",
|
|
2797
|
+
"../src/bitgo/wallet/wallet.ts",
|
|
2798
|
+
"../src/bitgo/wallet/wallets.ts"
|
|
2799
|
+
],
|
|
2800
|
+
"../src/bitgo/wallet/iwallet.ts": [
|
|
2801
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2802
|
+
"../src/api/index.ts",
|
|
2803
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2804
|
+
"../src/bitgo/bitgobase.ts",
|
|
2805
|
+
"../src/bitgo/keychain/index.ts",
|
|
2806
|
+
"../src/bitgo/pendingapproval/index.ts",
|
|
2807
|
+
"../src/bitgo/trading/index.ts"
|
|
2808
|
+
],
|
|
2809
|
+
"../src/bitgo/wallet/iwallets.ts": [
|
|
2810
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2811
|
+
"../src/api/index.ts",
|
|
2812
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2813
|
+
"../src/bitgo/wallet/iwallet.ts",
|
|
2814
|
+
"../src/bitgo/wallet/wallet.ts"
|
|
2815
|
+
],
|
|
2816
|
+
"../src/bitgo/wallet/wallet.ts": [
|
|
2817
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2818
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2819
|
+
"../../../node_modules/bignumber.js/bignumber.d.ts",
|
|
2820
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2821
|
+
"../src/bitgo/bitcoin.ts",
|
|
2822
|
+
"../src/bitgo/bitgobase.ts",
|
|
2823
|
+
"../src/bitgo/ecdh.ts",
|
|
2824
|
+
"../src/bitgo/errors.ts",
|
|
2825
|
+
"../src/bitgo/internal/internal.ts",
|
|
2826
|
+
"../src/bitgo/internal/keycard.ts",
|
|
2827
|
+
"../src/bitgo/keychain/index.ts",
|
|
2828
|
+
"../src/bitgo/pendingapproval/index.ts",
|
|
2829
|
+
"../src/bitgo/trading/tradingaccount.ts",
|
|
2830
|
+
"../src/bitgo/utils/index.ts",
|
|
2831
|
+
"../src/bitgo/wallet/iwallet.ts",
|
|
2832
|
+
"../src/common.ts"
|
|
2833
|
+
],
|
|
2834
|
+
"../src/bitgo/wallet/wallets.ts": [
|
|
2835
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2836
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2837
|
+
"../../../node_modules/bignumber.js/bignumber.d.ts",
|
|
2838
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
2839
|
+
"../src/api/index.ts",
|
|
2840
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2841
|
+
"../src/bitgo/bitgobase.ts",
|
|
2842
|
+
"../src/bitgo/ecdh.ts",
|
|
2843
|
+
"../src/bitgo/keychain/index.ts",
|
|
2844
|
+
"../src/bitgo/utils/index.ts",
|
|
2845
|
+
"../src/bitgo/wallet/iwallets.ts",
|
|
2846
|
+
"../src/bitgo/wallet/wallet.ts",
|
|
2847
|
+
"../src/common.ts"
|
|
2848
|
+
],
|
|
2849
|
+
"../src/bitgo/webhook/index.ts": [
|
|
2850
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2851
|
+
"../src/bitgo/webhook/iwebhooks.ts",
|
|
2852
|
+
"../src/bitgo/webhook/webhooks.ts"
|
|
2853
|
+
],
|
|
2854
|
+
"../src/bitgo/webhook/iwebhooks.ts": [
|
|
2855
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2856
|
+
],
|
|
2857
|
+
"../src/bitgo/webhook/webhooks.ts": [
|
|
2858
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2859
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2860
|
+
"../src/bitgo/basecoin/index.ts",
|
|
2861
|
+
"../src/bitgo/bitgobase.ts",
|
|
2862
|
+
"../src/bitgo/webhook/iwebhooks.ts",
|
|
2863
|
+
"../src/common.ts"
|
|
2864
|
+
],
|
|
2865
|
+
"../src/bitgojserror.ts": [
|
|
1138
2866
|
"../../../node_modules/@types/node/util.d.ts"
|
|
1139
2867
|
],
|
|
1140
2868
|
"../src/common.ts": [
|
|
1141
2869
|
"../../../node_modules/@types/lodash/index.d.ts",
|
|
1142
2870
|
"../../../node_modules/@types/node/util.d.ts",
|
|
1143
|
-
"../src/
|
|
2871
|
+
"../src/bitgo/index.ts"
|
|
1144
2872
|
],
|
|
1145
2873
|
"../src/index.ts": [
|
|
1146
2874
|
"../../../node_modules/@types/node/util.d.ts",
|
|
1147
|
-
"../src/
|
|
1148
|
-
"../src/
|
|
1149
|
-
"../src/
|
|
2875
|
+
"../src/account-lib/index.ts",
|
|
2876
|
+
"../src/api/index.ts",
|
|
2877
|
+
"../src/bitgo/index.ts",
|
|
2878
|
+
"../src/bitgojserror.ts",
|
|
2879
|
+
"../src/common.ts"
|
|
2880
|
+
],
|
|
2881
|
+
"../../statics/dist/src/account.d.ts": [
|
|
2882
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2883
|
+
"../../statics/dist/src/base.d.ts",
|
|
2884
|
+
"../../statics/dist/src/networks.d.ts"
|
|
2885
|
+
],
|
|
2886
|
+
"../../statics/dist/src/base.d.ts": [
|
|
2887
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2888
|
+
"../../statics/dist/src/networks.d.ts"
|
|
2889
|
+
],
|
|
2890
|
+
"../../statics/dist/src/coins.d.ts": [
|
|
2891
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2892
|
+
"../../statics/dist/src/map.d.ts"
|
|
2893
|
+
],
|
|
2894
|
+
"../../statics/dist/src/errors.d.ts": [
|
|
2895
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2896
|
+
"../../statics/dist/src/base.d.ts"
|
|
2897
|
+
],
|
|
2898
|
+
"../../statics/dist/src/index.d.ts": [
|
|
2899
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2900
|
+
"../../statics/dist/src/account.d.ts",
|
|
2901
|
+
"../../statics/dist/src/base.d.ts",
|
|
2902
|
+
"../../statics/dist/src/coins.d.ts",
|
|
2903
|
+
"../../statics/dist/src/errors.d.ts",
|
|
2904
|
+
"../../statics/dist/src/map.d.ts",
|
|
2905
|
+
"../../statics/dist/src/networks.d.ts",
|
|
2906
|
+
"../../statics/dist/src/ofc.d.ts",
|
|
2907
|
+
"../../statics/dist/src/utxo.d.ts"
|
|
2908
|
+
],
|
|
2909
|
+
"../../statics/dist/src/map.d.ts": [
|
|
2910
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2911
|
+
"../../statics/dist/src/base.d.ts"
|
|
2912
|
+
],
|
|
2913
|
+
"../../statics/dist/src/networks.d.ts": [
|
|
2914
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2915
|
+
"../../statics/dist/src/base.d.ts"
|
|
2916
|
+
],
|
|
2917
|
+
"../../statics/dist/src/ofc.d.ts": [
|
|
2918
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2919
|
+
"../../statics/dist/src/base.d.ts",
|
|
2920
|
+
"../../statics/dist/src/networks.d.ts"
|
|
2921
|
+
],
|
|
2922
|
+
"../../statics/dist/src/utxo.d.ts": [
|
|
2923
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2924
|
+
"../../statics/dist/src/base.d.ts",
|
|
2925
|
+
"../../statics/dist/src/networks.d.ts"
|
|
2926
|
+
],
|
|
2927
|
+
"../../utxo-lib/dist/src/address.d.ts": [
|
|
2928
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
2929
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2930
|
+
"../../../node_modules/bitcoinjs-lib/types/address.d.ts",
|
|
2931
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
2932
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
2933
|
+
],
|
|
2934
|
+
"../../utxo-lib/dist/src/addressformat.d.ts": [
|
|
2935
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
2936
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2937
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
2938
|
+
],
|
|
2939
|
+
"../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts": [
|
|
2940
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
2941
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2942
|
+
"../../utxo-lib/dist/src/addressformat.d.ts",
|
|
2943
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
2944
|
+
],
|
|
2945
|
+
"../../utxo-lib/dist/src/bitgo/bitcoincash/index.d.ts": [
|
|
2946
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2947
|
+
"../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts"
|
|
2948
|
+
],
|
|
2949
|
+
"../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts": [
|
|
2950
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
2951
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2952
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
2953
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
2954
|
+
],
|
|
2955
|
+
"../../utxo-lib/dist/src/bitgo/dash/dashtransactionbuilder.d.ts": [
|
|
2956
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
2957
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2958
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
2959
|
+
"../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts",
|
|
2960
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
2961
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
2962
|
+
],
|
|
2963
|
+
"../../utxo-lib/dist/src/bitgo/dash/index.d.ts": [
|
|
2964
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2965
|
+
"../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts",
|
|
2966
|
+
"../../utxo-lib/dist/src/bitgo/dash/dashtransactionbuilder.d.ts"
|
|
2967
|
+
],
|
|
2968
|
+
"../../utxo-lib/dist/src/bitgo/index.d.ts": [
|
|
2969
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2970
|
+
"../../utxo-lib/dist/src/bitgo/bitcoincash/index.d.ts",
|
|
2971
|
+
"../../utxo-lib/dist/src/bitgo/dash/index.d.ts",
|
|
2972
|
+
"../../utxo-lib/dist/src/bitgo/keyutil.d.ts",
|
|
2973
|
+
"../../utxo-lib/dist/src/bitgo/nonstandardhalfsigned.d.ts",
|
|
2974
|
+
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts",
|
|
2975
|
+
"../../utxo-lib/dist/src/bitgo/signature.d.ts",
|
|
2976
|
+
"../../utxo-lib/dist/src/bitgo/transaction.d.ts",
|
|
2977
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
2978
|
+
"../../utxo-lib/dist/src/bitgo/unspent.d.ts",
|
|
2979
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
2980
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
2981
|
+
"../../utxo-lib/dist/src/bitgo/wallet/index.d.ts",
|
|
2982
|
+
"../../utxo-lib/dist/src/bitgo/zcash/index.d.ts"
|
|
2983
|
+
],
|
|
2984
|
+
"../../utxo-lib/dist/src/bitgo/keyutil.d.ts": [
|
|
2985
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
2986
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2987
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
2988
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
2989
|
+
],
|
|
2990
|
+
"../../utxo-lib/dist/src/bitgo/nonstandardhalfsigned.d.ts": [
|
|
2991
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2992
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
2993
|
+
],
|
|
2994
|
+
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts": [
|
|
2995
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
2996
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
2997
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
2998
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
2999
|
+
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts",
|
|
3000
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
3001
|
+
],
|
|
3002
|
+
"../../utxo-lib/dist/src/bitgo/signature.d.ts": [
|
|
3003
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
3004
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
3005
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
3006
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
3007
|
+
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts",
|
|
3008
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
3009
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
3010
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
3011
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
3012
|
+
],
|
|
3013
|
+
"../../utxo-lib/dist/src/bitgo/transaction.d.ts": [
|
|
3014
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
3015
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
3016
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
3017
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
3018
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
3019
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
3020
|
+
],
|
|
3021
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts": [
|
|
3022
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
3023
|
+
],
|
|
3024
|
+
"../../utxo-lib/dist/src/bitgo/unspent.d.ts": [
|
|
3025
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
3026
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
3027
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
3028
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
3029
|
+
],
|
|
3030
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts": [
|
|
3031
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
3032
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
3033
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
3034
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
3035
|
+
],
|
|
3036
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts": [
|
|
3037
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
3038
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
3039
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
3040
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
3041
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
3042
|
+
],
|
|
3043
|
+
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts": [
|
|
3044
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
3045
|
+
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts"
|
|
3046
|
+
],
|
|
3047
|
+
"../../utxo-lib/dist/src/bitgo/wallet/index.d.ts": [
|
|
3048
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
3049
|
+
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts",
|
|
3050
|
+
"../../utxo-lib/dist/src/bitgo/wallet/unspent.d.ts",
|
|
3051
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts",
|
|
3052
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletscripts.d.ts",
|
|
3053
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletunspentsigner.d.ts"
|
|
3054
|
+
],
|
|
3055
|
+
"../../utxo-lib/dist/src/bitgo/wallet/unspent.d.ts": [
|
|
3056
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
3057
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
3058
|
+
"../../utxo-lib/dist/src/bitgo/unspent.d.ts",
|
|
3059
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
3060
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
3061
|
+
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts",
|
|
3062
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts",
|
|
3063
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletunspentsigner.d.ts"
|
|
3064
|
+
],
|
|
3065
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts": [
|
|
3066
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
3067
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
3068
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
3069
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts"
|
|
3070
|
+
],
|
|
3071
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletscripts.d.ts": [
|
|
3072
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
3073
|
+
"../../utxo-lib/dist/src/bitgo/index.d.ts",
|
|
3074
|
+
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts",
|
|
3075
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts",
|
|
3076
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
3077
|
+
],
|
|
3078
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletunspentsigner.d.ts": [
|
|
3079
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
3080
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
3081
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
3082
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts"
|
|
1150
3083
|
],
|
|
1151
|
-
"
|
|
3084
|
+
"../../utxo-lib/dist/src/bitgo/zcash/index.d.ts": [
|
|
1152
3085
|
"../../../node_modules/@types/node/util.d.ts",
|
|
1153
|
-
"
|
|
3086
|
+
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts",
|
|
3087
|
+
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransactionbuilder.d.ts"
|
|
1154
3088
|
],
|
|
1155
|
-
"
|
|
3089
|
+
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts": [
|
|
3090
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
3091
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
3092
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
3093
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
3094
|
+
],
|
|
3095
|
+
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransactionbuilder.d.ts": [
|
|
3096
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
1156
3097
|
"../../../node_modules/@types/node/util.d.ts",
|
|
1157
|
-
"
|
|
1158
|
-
"
|
|
3098
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
3099
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
3100
|
+
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts",
|
|
3101
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
3102
|
+
],
|
|
3103
|
+
"../../utxo-lib/dist/src/index.d.ts": [
|
|
3104
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
3105
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
3106
|
+
"../../utxo-lib/dist/src/address.d.ts",
|
|
3107
|
+
"../../utxo-lib/dist/src/addressformat.d.ts",
|
|
3108
|
+
"../../utxo-lib/dist/src/bitgo/index.d.ts",
|
|
3109
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
3110
|
+
],
|
|
3111
|
+
"../../utxo-lib/dist/src/networks.d.ts": [
|
|
3112
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
1159
3113
|
],
|
|
1160
|
-
"
|
|
3114
|
+
"../../../node_modules/@noble/secp256k1/lib/index.d.ts": [
|
|
3115
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
3116
|
+
],
|
|
3117
|
+
"../../../node_modules/@stablelib/hex/lib/hex.d.ts": [
|
|
1161
3118
|
"../../../node_modules/@types/node/util.d.ts"
|
|
1162
3119
|
],
|
|
1163
3120
|
"../../../node_modules/@types/archy/index.d.ts": [
|
|
@@ -2121,44 +4078,276 @@
|
|
|
2121
4078
|
"../../../node_modules/@types/node/url.d.ts",
|
|
2122
4079
|
"../../../node_modules/@types/node/util.d.ts"
|
|
2123
4080
|
],
|
|
2124
|
-
"../../../node_modules/@types/ws/index.d.ts": [
|
|
2125
|
-
"../../../node_modules/@types/node/events.d.ts",
|
|
2126
|
-
"../../../node_modules/@types/node/http.d.ts",
|
|
2127
|
-
"../../../node_modules/@types/node/https.d.ts",
|
|
4081
|
+
"../../../node_modules/@types/ws/index.d.ts": [
|
|
4082
|
+
"../../../node_modules/@types/node/events.d.ts",
|
|
4083
|
+
"../../../node_modules/@types/node/http.d.ts",
|
|
4084
|
+
"../../../node_modules/@types/node/https.d.ts",
|
|
4085
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4086
|
+
"../../../node_modules/@types/node/stream.d.ts",
|
|
4087
|
+
"../../../node_modules/@types/node/tls.d.ts",
|
|
4088
|
+
"../../../node_modules/@types/node/url.d.ts",
|
|
4089
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4090
|
+
"../../../node_modules/@types/node/zlib.d.ts"
|
|
4091
|
+
],
|
|
4092
|
+
"../../../node_modules/@types/yargs-parser/index.d.ts": [
|
|
4093
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4094
|
+
],
|
|
4095
|
+
"../../../node_modules/@types/yargs/index.d.ts": [
|
|
4096
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4097
|
+
"../../../node_modules/@types/yargs-parser/index.d.ts"
|
|
4098
|
+
],
|
|
4099
|
+
"../../../node_modules/@types/yauzl/index.d.ts": [
|
|
4100
|
+
"../../../node_modules/@types/node/events.d.ts",
|
|
4101
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4102
|
+
"../../../node_modules/@types/node/stream.d.ts",
|
|
4103
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4104
|
+
],
|
|
4105
|
+
"../../../node_modules/anymatch/index.d.ts": [
|
|
4106
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4107
|
+
],
|
|
4108
|
+
"../../../node_modules/base-x/src/index.d.ts": [
|
|
4109
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4110
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4111
|
+
],
|
|
4112
|
+
"../../../node_modules/bignumber.js/bignumber.d.ts": [
|
|
4113
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4114
|
+
],
|
|
4115
|
+
"../../../node_modules/bip174/src/lib/interfaces.d.ts": [
|
|
4116
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4117
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4118
|
+
],
|
|
4119
|
+
"../../../node_modules/bip174/src/lib/psbt.d.ts": [
|
|
4120
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4121
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4122
|
+
"../../../node_modules/bip174/src/lib/interfaces.d.ts"
|
|
4123
|
+
],
|
|
4124
|
+
"../../../node_modules/bip32/types/bip32.d.ts": [
|
|
4125
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4126
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4127
|
+
],
|
|
4128
|
+
"../../../node_modules/bip32/types/index.d.ts": [
|
|
4129
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4130
|
+
"../../../node_modules/bip32/types/bip32.d.ts"
|
|
4131
|
+
],
|
|
4132
|
+
"../../../node_modules/bitcoinjs-lib/types/address.d.ts": [
|
|
4133
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4134
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4135
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts"
|
|
4136
|
+
],
|
|
4137
|
+
"../../../node_modules/bitcoinjs-lib/types/block.d.ts": [
|
|
4138
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4139
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4140
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts"
|
|
4141
|
+
],
|
|
4142
|
+
"../../../node_modules/bitcoinjs-lib/types/classify.d.ts": [
|
|
4143
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4144
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4145
|
+
],
|
|
4146
|
+
"../../../node_modules/bitcoinjs-lib/types/crypto.d.ts": [
|
|
4147
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4148
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4149
|
+
],
|
|
4150
|
+
"../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts": [
|
|
4151
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4152
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4153
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts"
|
|
4154
|
+
],
|
|
4155
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts": [
|
|
4156
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4157
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
4158
|
+
"../../../node_modules/bitcoinjs-lib/types/address.d.ts",
|
|
4159
|
+
"../../../node_modules/bitcoinjs-lib/types/block.d.ts",
|
|
4160
|
+
"../../../node_modules/bitcoinjs-lib/types/classify.d.ts",
|
|
4161
|
+
"../../../node_modules/bitcoinjs-lib/types/crypto.d.ts",
|
|
4162
|
+
"../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts",
|
|
4163
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
4164
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts",
|
|
4165
|
+
"../../../node_modules/bitcoinjs-lib/types/psbt.d.ts",
|
|
4166
|
+
"../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts",
|
|
4167
|
+
"../../../node_modules/bitcoinjs-lib/types/script.d.ts",
|
|
4168
|
+
"../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts",
|
|
4169
|
+
"../../../node_modules/bitcoinjs-lib/types/taproot.d.ts",
|
|
4170
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts",
|
|
4171
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts"
|
|
4172
|
+
],
|
|
4173
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts": [
|
|
4174
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4175
|
+
],
|
|
4176
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts": [
|
|
4177
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4178
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
4179
|
+
],
|
|
4180
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts": [
|
|
4181
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4182
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4183
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
4184
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts",
|
|
4185
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts",
|
|
4186
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts",
|
|
4187
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts",
|
|
4188
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts",
|
|
4189
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts",
|
|
4190
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts",
|
|
4191
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts",
|
|
4192
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts"
|
|
4193
|
+
],
|
|
4194
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts": [
|
|
4195
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4196
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
4197
|
+
],
|
|
4198
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts": [
|
|
4199
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4200
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
4201
|
+
],
|
|
4202
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts": [
|
|
4203
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4204
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
4205
|
+
],
|
|
4206
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts": [
|
|
4207
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4208
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
4209
|
+
],
|
|
4210
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts": [
|
|
4211
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4212
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
4213
|
+
],
|
|
4214
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts": [
|
|
4215
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4216
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
4217
|
+
],
|
|
4218
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts": [
|
|
4219
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4220
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
4221
|
+
],
|
|
4222
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts": [
|
|
4223
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4224
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
4225
|
+
],
|
|
4226
|
+
"../../../node_modules/bitcoinjs-lib/types/psbt.d.ts": [
|
|
4227
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4228
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4229
|
+
"../../../node_modules/bip174/src/lib/interfaces.d.ts",
|
|
4230
|
+
"../../../node_modules/bip174/src/lib/psbt.d.ts",
|
|
4231
|
+
"../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts",
|
|
4232
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
4233
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts"
|
|
4234
|
+
],
|
|
4235
|
+
"../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts": [
|
|
4236
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4237
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4238
|
+
],
|
|
4239
|
+
"../../../node_modules/bitcoinjs-lib/types/script.d.ts": [
|
|
4240
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4241
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4242
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts",
|
|
4243
|
+
"../../../node_modules/bitcoinjs-lib/types/script_number.d.ts",
|
|
4244
|
+
"../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts"
|
|
4245
|
+
],
|
|
4246
|
+
"../../../node_modules/bitcoinjs-lib/types/script_number.d.ts": [
|
|
4247
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4248
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4249
|
+
],
|
|
4250
|
+
"../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts": [
|
|
4251
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4252
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4253
|
+
],
|
|
4254
|
+
"../../../node_modules/bitcoinjs-lib/types/taproot.d.ts": [
|
|
4255
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4256
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4257
|
+
],
|
|
4258
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts": [
|
|
4259
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4260
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4261
|
+
],
|
|
4262
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts": [
|
|
2128
4263
|
"../../../node_modules/@types/node/index.d.ts",
|
|
2129
|
-
"../../../node_modules/@types/node/stream.d.ts",
|
|
2130
|
-
"../../../node_modules/@types/node/tls.d.ts",
|
|
2131
|
-
"../../../node_modules/@types/node/url.d.ts",
|
|
2132
4264
|
"../../../node_modules/@types/node/util.d.ts",
|
|
2133
|
-
"../../../node_modules
|
|
4265
|
+
"../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts",
|
|
4266
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
4267
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts"
|
|
2134
4268
|
],
|
|
2135
|
-
"../../../node_modules
|
|
4269
|
+
"../../../node_modules/bitcoinjs-message/index.d.ts": [
|
|
2136
4270
|
"../../../node_modules/@types/node/util.d.ts"
|
|
2137
4271
|
],
|
|
2138
|
-
"../../../node_modules
|
|
2139
|
-
"../../../node_modules/@types/node/util.d.ts"
|
|
2140
|
-
"../../../node_modules/@types/yargs-parser/index.d.ts"
|
|
4272
|
+
"../../../node_modules/buffer/index.d.ts": [
|
|
4273
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2141
4274
|
],
|
|
2142
|
-
"../../../node_modules
|
|
2143
|
-
"../../../node_modules/@types/node/
|
|
4275
|
+
"../../../node_modules/csstype/index.d.ts": [
|
|
4276
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4277
|
+
],
|
|
4278
|
+
"../../../node_modules/ethereumjs-util/dist/account.d.ts": [
|
|
2144
4279
|
"../../../node_modules/@types/node/index.d.ts",
|
|
2145
|
-
"../../../node_modules/@types/node/stream.d.ts",
|
|
2146
4280
|
"../../../node_modules/@types/node/util.d.ts"
|
|
2147
4281
|
],
|
|
2148
|
-
"../../../node_modules/
|
|
4282
|
+
"../../../node_modules/ethereumjs-util/dist/bytes.d.ts": [
|
|
4283
|
+
"../../../node_modules/@types/bn.js/index.d.ts",
|
|
4284
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
2149
4285
|
"../../../node_modules/@types/node/util.d.ts"
|
|
2150
4286
|
],
|
|
2151
|
-
"../../../node_modules/
|
|
4287
|
+
"../../../node_modules/ethereumjs-util/dist/constants.d.ts": [
|
|
4288
|
+
"../../../node_modules/@types/bn.js/index.d.ts",
|
|
2152
4289
|
"../../../node_modules/@types/node/index.d.ts",
|
|
2153
4290
|
"../../../node_modules/@types/node/util.d.ts"
|
|
2154
4291
|
],
|
|
2155
|
-
"../../../node_modules/
|
|
4292
|
+
"../../../node_modules/ethereumjs-util/dist/hash.d.ts": [
|
|
4293
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4294
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4295
|
+
"../../../node_modules/rlp/dist/index.d.ts"
|
|
4296
|
+
],
|
|
4297
|
+
"../../../node_modules/ethereumjs-util/dist/index.d.ts": [
|
|
4298
|
+
"../../../node_modules/@types/bn.js/index.d.ts",
|
|
4299
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4300
|
+
"../../../node_modules/ethereumjs-util/dist/account.d.ts",
|
|
4301
|
+
"../../../node_modules/ethereumjs-util/dist/bytes.d.ts",
|
|
4302
|
+
"../../../node_modules/ethereumjs-util/dist/constants.d.ts",
|
|
4303
|
+
"../../../node_modules/ethereumjs-util/dist/hash.d.ts",
|
|
4304
|
+
"../../../node_modules/ethereumjs-util/dist/object.d.ts",
|
|
4305
|
+
"../../../node_modules/ethereumjs-util/dist/signature.d.ts",
|
|
4306
|
+
"../../../node_modules/rlp/dist/index.d.ts"
|
|
4307
|
+
],
|
|
4308
|
+
"../../../node_modules/ethereumjs-util/dist/object.d.ts": [
|
|
2156
4309
|
"../../../node_modules/@types/node/util.d.ts"
|
|
2157
4310
|
],
|
|
2158
|
-
"../../../node_modules/
|
|
4311
|
+
"../../../node_modules/ethereumjs-util/dist/signature.d.ts": [
|
|
4312
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
2159
4313
|
"../../../node_modules/@types/node/util.d.ts"
|
|
2160
4314
|
],
|
|
2161
|
-
"../../../node_modules/
|
|
4315
|
+
"../../../node_modules/noble-bls12-381/index.d.ts": [
|
|
4316
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4317
|
+
"../../../node_modules/noble-bls12-381/math.d.ts"
|
|
4318
|
+
],
|
|
4319
|
+
"../../../node_modules/noble-bls12-381/math.d.ts": [
|
|
4320
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4321
|
+
],
|
|
4322
|
+
"../../../node_modules/openpgp/openpgp.d.ts": [
|
|
4323
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4324
|
+
],
|
|
4325
|
+
"../../../node_modules/paillier-bigint/types/generaterandomkeys.d.ts": [
|
|
4326
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4327
|
+
"../../../node_modules/paillier-bigint/types/privatekey.d.ts",
|
|
4328
|
+
"../../../node_modules/paillier-bigint/types/publickey.d.ts"
|
|
4329
|
+
],
|
|
4330
|
+
"../../../node_modules/paillier-bigint/types/index.d.ts": [
|
|
4331
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4332
|
+
"../../../node_modules/paillier-bigint/types/generaterandomkeys.d.ts",
|
|
4333
|
+
"../../../node_modules/paillier-bigint/types/privatekey.d.ts",
|
|
4334
|
+
"../../../node_modules/paillier-bigint/types/publickey.d.ts"
|
|
4335
|
+
],
|
|
4336
|
+
"../../../node_modules/paillier-bigint/types/privatekey.d.ts": [
|
|
4337
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4338
|
+
"../../../node_modules/paillier-bigint/types/publickey.d.ts"
|
|
4339
|
+
],
|
|
4340
|
+
"../../../node_modules/paillier-bigint/types/publickey.d.ts": [
|
|
4341
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4342
|
+
],
|
|
4343
|
+
"../../../node_modules/rlp/dist/index.d.ts": [
|
|
4344
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4345
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
4346
|
+
"../../../node_modules/rlp/dist/types.d.ts"
|
|
4347
|
+
],
|
|
4348
|
+
"../../../node_modules/rlp/dist/types.d.ts": [
|
|
4349
|
+
"../../../node_modules/@types/bn.js/index.d.ts",
|
|
4350
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
2162
4351
|
"../../../node_modules/@types/node/util.d.ts"
|
|
2163
4352
|
],
|
|
2164
4353
|
"../../../node_modules/should/should.d.ts": [
|
|
@@ -2170,6 +4359,9 @@
|
|
|
2170
4359
|
"../../../node_modules/tapable/tapable.d.ts": [
|
|
2171
4360
|
"../../../node_modules/@types/node/util.d.ts"
|
|
2172
4361
|
],
|
|
4362
|
+
"../../../node_modules/tweetnacl/nacl.d.ts": [
|
|
4363
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
4364
|
+
],
|
|
2173
4365
|
"../../../node_modules/typescript/lib/lib.dom.d.ts": [
|
|
2174
4366
|
"../../../node_modules/@types/node/util.d.ts"
|
|
2175
4367
|
],
|
|
@@ -2304,20 +4496,747 @@
|
|
|
2304
4496
|
]
|
|
2305
4497
|
},
|
|
2306
4498
|
"exportedModulesMap": {
|
|
4499
|
+
"../src/account-lib/basecoin/basekeypair.ts": [
|
|
4500
|
+
"../src/account-lib/basecoin/enum.ts"
|
|
4501
|
+
],
|
|
4502
|
+
"../src/account-lib/basecoin/basetransaction.ts": [
|
|
4503
|
+
"../../statics/dist/src/index.d.ts",
|
|
4504
|
+
"../src/account-lib/basecoin/enum.ts",
|
|
4505
|
+
"../src/account-lib/basecoin/iface.ts"
|
|
4506
|
+
],
|
|
4507
|
+
"../src/account-lib/basecoin/basetransactionbuilder.ts": [
|
|
4508
|
+
"../../../node_modules/bignumber.js/bignumber.d.ts",
|
|
4509
|
+
"../../statics/dist/src/index.d.ts",
|
|
4510
|
+
"../src/account-lib/basecoin/basetransaction.ts",
|
|
4511
|
+
"../src/account-lib/basecoin/iface.ts"
|
|
4512
|
+
],
|
|
4513
|
+
"../src/account-lib/basecoin/basetransactionbuilderfactory.ts": [
|
|
4514
|
+
"../../statics/dist/src/index.d.ts"
|
|
4515
|
+
],
|
|
4516
|
+
"../src/account-lib/basecoin/blskeypair.ts": [
|
|
4517
|
+
"../src/account-lib/basecoin/basekeypair.ts",
|
|
4518
|
+
"../src/account-lib/basecoin/enum.ts",
|
|
4519
|
+
"../src/account-lib/basecoin/iface.ts"
|
|
4520
|
+
],
|
|
4521
|
+
"../src/account-lib/basecoin/ed25519keypair.ts": [
|
|
4522
|
+
"../src/account-lib/basecoin/basekeypair.ts",
|
|
4523
|
+
"../src/account-lib/basecoin/enum.ts",
|
|
4524
|
+
"../src/account-lib/basecoin/iface.ts"
|
|
4525
|
+
],
|
|
4526
|
+
"../src/account-lib/basecoin/iface.ts": [
|
|
4527
|
+
"../src/account-lib/basecoin/basetransactionbuilder.ts",
|
|
4528
|
+
"../src/account-lib/basecoin/basetransactionbuilderfactory.ts",
|
|
4529
|
+
"../src/bitgo/index.ts"
|
|
4530
|
+
],
|
|
4531
|
+
"../src/account-lib/basecoin/index.ts": [
|
|
4532
|
+
"../src/account-lib/basecoin/basekeypair.ts",
|
|
4533
|
+
"../src/account-lib/basecoin/basetransaction.ts",
|
|
4534
|
+
"../src/account-lib/basecoin/basetransactionbuilder.ts",
|
|
4535
|
+
"../src/account-lib/basecoin/basetransactionbuilderfactory.ts",
|
|
4536
|
+
"../src/account-lib/basecoin/baseutils.ts",
|
|
4537
|
+
"../src/account-lib/basecoin/blskeypair.ts",
|
|
4538
|
+
"../src/account-lib/basecoin/ed25519keypair.ts",
|
|
4539
|
+
"../src/account-lib/basecoin/enum.ts",
|
|
4540
|
+
"../src/account-lib/basecoin/errors.ts",
|
|
4541
|
+
"../src/account-lib/basecoin/iface.ts",
|
|
4542
|
+
"../src/account-lib/basecoin/secp256k1extendedkeypair.ts"
|
|
4543
|
+
],
|
|
4544
|
+
"../src/account-lib/basecoin/secp256k1extendedkeypair.ts": [
|
|
4545
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
4546
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
4547
|
+
"../src/account-lib/basecoin/basekeypair.ts",
|
|
4548
|
+
"../src/account-lib/basecoin/enum.ts",
|
|
4549
|
+
"../src/account-lib/basecoin/iface.ts"
|
|
4550
|
+
],
|
|
4551
|
+
"../src/account-lib/index.ts": [
|
|
4552
|
+
"../src/account-lib/basecoin/index.ts",
|
|
4553
|
+
"../src/account-lib/mpc/index.ts",
|
|
4554
|
+
"../src/account-lib/util/crypto.ts",
|
|
4555
|
+
"../src/account-lib/util/ed25519keyderiver.ts"
|
|
4556
|
+
],
|
|
4557
|
+
"../src/account-lib/mpc/curves/ed25519.ts": [
|
|
4558
|
+
"../src/account-lib/mpc/curves/basecurve.ts"
|
|
4559
|
+
],
|
|
4560
|
+
"../src/account-lib/mpc/curves/index.ts": [
|
|
4561
|
+
"../src/account-lib/mpc/curves/basecurve.ts",
|
|
4562
|
+
"../src/account-lib/mpc/curves/ed25519.ts",
|
|
4563
|
+
"../src/account-lib/mpc/curves/secp256k1.ts"
|
|
4564
|
+
],
|
|
4565
|
+
"../src/account-lib/mpc/curves/secp256k1.ts": [
|
|
4566
|
+
"../src/account-lib/mpc/curves/basecurve.ts"
|
|
4567
|
+
],
|
|
4568
|
+
"../src/account-lib/mpc/hdtree.ts": [
|
|
4569
|
+
"../src/account-lib/mpc/curves/index.ts"
|
|
4570
|
+
],
|
|
4571
|
+
"../src/account-lib/mpc/index.ts": [
|
|
4572
|
+
"../src/account-lib/mpc/curves/index.ts",
|
|
4573
|
+
"../src/account-lib/mpc/hdtree.ts",
|
|
4574
|
+
"../src/account-lib/mpc/tss/index.ts",
|
|
4575
|
+
"../src/account-lib/mpc/util.ts"
|
|
4576
|
+
],
|
|
4577
|
+
"../src/account-lib/mpc/shamir.ts": [
|
|
4578
|
+
"../src/account-lib/mpc/curves/index.ts"
|
|
4579
|
+
],
|
|
4580
|
+
"../src/account-lib/mpc/tss/ecdsa/ecdsa.ts": [
|
|
4581
|
+
"../src/account-lib/mpc/curves/index.ts",
|
|
4582
|
+
"../src/account-lib/mpc/shamir.ts",
|
|
4583
|
+
"../src/account-lib/mpc/tss/ecdsa/types.ts"
|
|
4584
|
+
],
|
|
4585
|
+
"../src/account-lib/mpc/tss/ecdsa/index.ts": [
|
|
4586
|
+
"../src/account-lib/mpc/tss/ecdsa/ecdsa.ts",
|
|
4587
|
+
"../src/account-lib/mpc/tss/ecdsa/types.ts"
|
|
4588
|
+
],
|
|
4589
|
+
"../src/account-lib/mpc/tss/eddsa/eddsa.ts": [
|
|
4590
|
+
"../src/account-lib/mpc/curves/index.ts",
|
|
4591
|
+
"../src/account-lib/mpc/hdtree.ts",
|
|
4592
|
+
"../src/account-lib/mpc/shamir.ts",
|
|
4593
|
+
"../src/account-lib/mpc/tss/eddsa/types.ts"
|
|
4594
|
+
],
|
|
4595
|
+
"../src/account-lib/mpc/tss/eddsa/index.ts": [
|
|
4596
|
+
"../src/account-lib/mpc/tss/eddsa/eddsa.ts",
|
|
4597
|
+
"../src/account-lib/mpc/tss/eddsa/types.ts"
|
|
4598
|
+
],
|
|
4599
|
+
"../src/account-lib/mpc/tss/index.ts": [
|
|
4600
|
+
"../src/account-lib/mpc/tss/ecdsa/index.ts",
|
|
4601
|
+
"../src/account-lib/mpc/tss/eddsa/index.ts",
|
|
4602
|
+
"../src/account-lib/mpc/tss/eddsa/types.ts"
|
|
4603
|
+
],
|
|
4604
|
+
"../src/account-lib/util/crypto.ts": [
|
|
4605
|
+
"../src/account-lib/basecoin/iface.ts"
|
|
4606
|
+
],
|
|
4607
|
+
"../src/api/index.ts": [
|
|
4608
|
+
"../src/api/bip32path.ts",
|
|
4609
|
+
"../src/api/types.ts"
|
|
4610
|
+
],
|
|
4611
|
+
"../src/api/types.ts": [
|
|
4612
|
+
"../../../node_modules/@types/superagent/index.d.ts"
|
|
4613
|
+
],
|
|
4614
|
+
"../src/bitgo/basecoin/basecoin.ts": [
|
|
4615
|
+
"../src/bitgo/basecoin/ibasecoin.ts",
|
|
4616
|
+
"../src/bitgo/bitgobase.ts",
|
|
4617
|
+
"../src/bitgo/enterprise/index.ts",
|
|
4618
|
+
"../src/bitgo/keychain/index.ts",
|
|
4619
|
+
"../src/bitgo/market/index.ts",
|
|
4620
|
+
"../src/bitgo/pendingapproval/index.ts",
|
|
4621
|
+
"../src/bitgo/recovery/index.ts",
|
|
4622
|
+
"../src/bitgo/wallet/index.ts",
|
|
4623
|
+
"../src/bitgo/webhook/index.ts"
|
|
4624
|
+
],
|
|
4625
|
+
"../src/bitgo/basecoin/ibasecoin.ts": [
|
|
4626
|
+
"../src/api/index.ts",
|
|
4627
|
+
"../src/bitgo/enterprise/index.ts",
|
|
4628
|
+
"../src/bitgo/keychain/index.ts",
|
|
4629
|
+
"../src/bitgo/market/index.ts",
|
|
4630
|
+
"../src/bitgo/pendingapproval/index.ts",
|
|
4631
|
+
"../src/bitgo/recovery/index.ts",
|
|
4632
|
+
"../src/bitgo/utils/index.ts",
|
|
4633
|
+
"../src/bitgo/wallet/index.ts",
|
|
4634
|
+
"../src/bitgo/webhook/iwebhooks.ts"
|
|
4635
|
+
],
|
|
4636
|
+
"../src/bitgo/basecoin/index.ts": [
|
|
4637
|
+
"../src/bitgo/basecoin/basecoin.ts",
|
|
4638
|
+
"../src/bitgo/basecoin/ibasecoin.ts"
|
|
4639
|
+
],
|
|
4640
|
+
"../src/bitgo/bip32util.ts": [
|
|
4641
|
+
"../../../node_modules/bip32/types/index.d.ts"
|
|
4642
|
+
],
|
|
4643
|
+
"../src/bitgo/bitcoin.ts": [
|
|
4644
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
4645
|
+
"../../utxo-lib/dist/src/index.d.ts",
|
|
4646
|
+
"../src/bitgo/types.ts"
|
|
4647
|
+
],
|
|
4648
|
+
"../src/bitgo/bitgobase.ts": [
|
|
4649
|
+
"../src/api/index.ts",
|
|
4650
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4651
|
+
"../src/bitgo/environments.ts"
|
|
4652
|
+
],
|
|
4653
|
+
"../src/bitgo/coinfactory.ts": [
|
|
4654
|
+
"../../statics/dist/src/index.d.ts",
|
|
4655
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4656
|
+
"../src/bitgo/bitgobase.ts"
|
|
4657
|
+
],
|
|
4658
|
+
"../src/bitgo/ecdh.ts": [
|
|
4659
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
4660
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
4661
|
+
],
|
|
4662
|
+
"../src/bitgo/enterprise/enterprise.ts": [
|
|
4663
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4664
|
+
"../src/bitgo/bitgobase.ts",
|
|
4665
|
+
"../src/bitgo/enterprise/index.ts",
|
|
4666
|
+
"../src/bitgo/trading/index.ts",
|
|
4667
|
+
"../src/bitgo/wallet/index.ts"
|
|
4668
|
+
],
|
|
4669
|
+
"../src/bitgo/enterprise/enterprises.ts": [
|
|
4670
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4671
|
+
"../src/bitgo/bitgobase.ts",
|
|
4672
|
+
"../src/bitgo/enterprise/enterprise.ts",
|
|
4673
|
+
"../src/bitgo/enterprise/ienterprises.ts"
|
|
4674
|
+
],
|
|
4675
|
+
"../src/bitgo/enterprise/ienterprise.ts": [
|
|
4676
|
+
"../src/bitgo/trading/index.ts",
|
|
4677
|
+
"../src/bitgo/wallet/index.ts"
|
|
4678
|
+
],
|
|
4679
|
+
"../src/bitgo/enterprise/ienterprises.ts": [
|
|
4680
|
+
"../src/bitgo/enterprise/ienterprise.ts"
|
|
4681
|
+
],
|
|
4682
|
+
"../src/bitgo/enterprise/index.ts": [
|
|
4683
|
+
"../src/bitgo/enterprise/enterprise.ts",
|
|
4684
|
+
"../src/bitgo/enterprise/enterprises.ts",
|
|
4685
|
+
"../src/bitgo/enterprise/ienterprise.ts",
|
|
4686
|
+
"../src/bitgo/enterprise/ienterprises.ts"
|
|
4687
|
+
],
|
|
4688
|
+
"../src/bitgo/environments.ts": [
|
|
4689
|
+
"../src/bitgo/types.ts"
|
|
4690
|
+
],
|
|
4691
|
+
"../src/bitgo/errors.ts": [
|
|
4692
|
+
"../src/bitgojserror.ts"
|
|
4693
|
+
],
|
|
4694
|
+
"../src/bitgo/index.ts": [
|
|
4695
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4696
|
+
"../src/bitgo/bip32util.ts",
|
|
4697
|
+
"../src/bitgo/bitcoin.ts",
|
|
4698
|
+
"../src/bitgo/bitgobase.ts",
|
|
4699
|
+
"../src/bitgo/coinfactory.ts",
|
|
4700
|
+
"../src/bitgo/config.ts",
|
|
4701
|
+
"../src/bitgo/ecdh.ts",
|
|
4702
|
+
"../src/bitgo/enterprise/index.ts",
|
|
4703
|
+
"../src/bitgo/environments.ts",
|
|
4704
|
+
"../src/bitgo/errors.ts",
|
|
4705
|
+
"../src/bitgo/internal/index.ts",
|
|
4706
|
+
"../src/bitgo/keychain/index.ts",
|
|
4707
|
+
"../src/bitgo/market/index.ts",
|
|
4708
|
+
"../src/bitgo/pendingapproval/index.ts",
|
|
4709
|
+
"../src/bitgo/recovery/index.ts",
|
|
4710
|
+
"../src/bitgo/trading/index.ts",
|
|
4711
|
+
"../src/bitgo/tss/index.ts",
|
|
4712
|
+
"../src/bitgo/types.ts",
|
|
4713
|
+
"../src/bitgo/utils/index.ts",
|
|
4714
|
+
"../src/bitgo/wallet/index.ts",
|
|
4715
|
+
"../src/bitgo/webhook/index.ts"
|
|
4716
|
+
],
|
|
4717
|
+
"../src/bitgo/internal/index.ts": [
|
|
4718
|
+
"../src/bitgo/internal/internal.ts",
|
|
4719
|
+
"../src/bitgo/internal/keycard.ts"
|
|
4720
|
+
],
|
|
4721
|
+
"../src/bitgo/internal/internal.ts": [
|
|
4722
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4723
|
+
"../src/bitgo/bitgobase.ts"
|
|
4724
|
+
],
|
|
4725
|
+
"../src/bitgo/internal/keycard.ts": [
|
|
4726
|
+
"../src/bitgo/keychain/index.ts"
|
|
4727
|
+
],
|
|
4728
|
+
"../src/bitgo/keychain/ikeychains.ts": [
|
|
4729
|
+
"../src/api/index.ts",
|
|
4730
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4731
|
+
"../src/bitgo/wallet/index.ts"
|
|
4732
|
+
],
|
|
4733
|
+
"../src/bitgo/keychain/index.ts": [
|
|
4734
|
+
"../src/bitgo/keychain/ikeychains.ts",
|
|
4735
|
+
"../src/bitgo/keychain/keychains.ts"
|
|
4736
|
+
],
|
|
4737
|
+
"../src/bitgo/keychain/keychains.ts": [
|
|
4738
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4739
|
+
"../src/bitgo/bitgobase.ts",
|
|
4740
|
+
"../src/bitgo/keychain/ikeychains.ts"
|
|
4741
|
+
],
|
|
4742
|
+
"../src/bitgo/market/index.ts": [
|
|
4743
|
+
"../src/bitgo/market/imarkets.ts",
|
|
4744
|
+
"../src/bitgo/market/markets.ts"
|
|
4745
|
+
],
|
|
4746
|
+
"../src/bitgo/market/markets.ts": [
|
|
4747
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4748
|
+
"../src/bitgo/bitgobase.ts",
|
|
4749
|
+
"../src/bitgo/market/index.ts"
|
|
4750
|
+
],
|
|
4751
|
+
"../src/bitgo/pendingapproval/index.ts": [
|
|
4752
|
+
"../src/bitgo/pendingapproval/ipendingapproval.ts",
|
|
4753
|
+
"../src/bitgo/pendingapproval/ipendingapprovals.ts",
|
|
4754
|
+
"../src/bitgo/pendingapproval/pendingapproval.ts",
|
|
4755
|
+
"../src/bitgo/pendingapproval/pendingapprovals.ts"
|
|
4756
|
+
],
|
|
4757
|
+
"../src/bitgo/pendingapproval/ipendingapproval.ts": [
|
|
4758
|
+
"../src/api/index.ts"
|
|
4759
|
+
],
|
|
4760
|
+
"../src/bitgo/pendingapproval/ipendingapprovals.ts": [
|
|
4761
|
+
"../src/bitgo/pendingapproval/ipendingapproval.ts"
|
|
4762
|
+
],
|
|
4763
|
+
"../src/bitgo/pendingapproval/pendingapproval.ts": [
|
|
4764
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4765
|
+
"../src/bitgo/bitgobase.ts",
|
|
4766
|
+
"../src/bitgo/pendingapproval/index.ts",
|
|
4767
|
+
"../src/bitgo/utils/index.ts",
|
|
4768
|
+
"../src/bitgo/wallet/index.ts"
|
|
4769
|
+
],
|
|
4770
|
+
"../src/bitgo/pendingapproval/pendingapprovals.ts": [
|
|
4771
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4772
|
+
"../src/bitgo/bitgobase.ts",
|
|
4773
|
+
"../src/bitgo/pendingapproval/index.ts"
|
|
4774
|
+
],
|
|
4775
|
+
"../src/bitgo/recovery/index.ts": [
|
|
4776
|
+
"../src/bitgo/recovery/initiate.ts"
|
|
4777
|
+
],
|
|
4778
|
+
"../src/bitgo/recovery/initiate.ts": [
|
|
4779
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
4780
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4781
|
+
"../src/bitgo/bitgobase.ts",
|
|
4782
|
+
"../src/bitgo/config.ts"
|
|
4783
|
+
],
|
|
4784
|
+
"../src/bitgo/trading/affirmation.ts": [
|
|
4785
|
+
"../src/bitgo/bitgobase.ts",
|
|
4786
|
+
"../src/bitgo/trading/index.ts"
|
|
4787
|
+
],
|
|
4788
|
+
"../src/bitgo/trading/affirmations.ts": [
|
|
4789
|
+
"../src/bitgo/bitgobase.ts",
|
|
4790
|
+
"../src/bitgo/trading/index.ts"
|
|
4791
|
+
],
|
|
4792
|
+
"../src/bitgo/trading/iaffirmation.ts": [
|
|
4793
|
+
"../src/bitgo/trading/payload.ts"
|
|
4794
|
+
],
|
|
4795
|
+
"../src/bitgo/trading/iaffirmations.ts": [
|
|
4796
|
+
"../src/bitgo/trading/iaffirmation.ts"
|
|
4797
|
+
],
|
|
4798
|
+
"../src/bitgo/trading/index.ts": [
|
|
4799
|
+
"../src/bitgo/trading/affirmation.ts",
|
|
4800
|
+
"../src/bitgo/trading/affirmations.ts",
|
|
4801
|
+
"../src/bitgo/trading/iaffirmation.ts",
|
|
4802
|
+
"../src/bitgo/trading/iaffirmations.ts",
|
|
4803
|
+
"../src/bitgo/trading/isettlement.ts",
|
|
4804
|
+
"../src/bitgo/trading/isettlements.ts",
|
|
4805
|
+
"../src/bitgo/trading/itradingaccount.ts",
|
|
4806
|
+
"../src/bitgo/trading/itradingpartner.ts",
|
|
4807
|
+
"../src/bitgo/trading/itradingpartners.ts",
|
|
4808
|
+
"../src/bitgo/trading/lock.ts",
|
|
4809
|
+
"../src/bitgo/trading/payload.ts",
|
|
4810
|
+
"../src/bitgo/trading/settlement.ts",
|
|
4811
|
+
"../src/bitgo/trading/settlements.ts",
|
|
4812
|
+
"../src/bitgo/trading/trade.ts",
|
|
4813
|
+
"../src/bitgo/trading/tradingaccount.ts",
|
|
4814
|
+
"../src/bitgo/trading/tradingpartner.ts",
|
|
4815
|
+
"../src/bitgo/trading/tradingpartners.ts"
|
|
4816
|
+
],
|
|
4817
|
+
"../src/bitgo/trading/isettlement.ts": [
|
|
4818
|
+
"../src/bitgo/trading/iaffirmation.ts",
|
|
4819
|
+
"../src/bitgo/trading/trade.ts"
|
|
4820
|
+
],
|
|
4821
|
+
"../src/bitgo/trading/isettlements.ts": [
|
|
4822
|
+
"../src/bitgo/trading/isettlement.ts",
|
|
4823
|
+
"../src/bitgo/trading/payload.ts",
|
|
4824
|
+
"../src/bitgo/trading/trade.ts"
|
|
4825
|
+
],
|
|
4826
|
+
"../src/bitgo/trading/itradingaccount.ts": [
|
|
4827
|
+
"../src/bitgo/trading/iaffirmations.ts",
|
|
4828
|
+
"../src/bitgo/trading/isettlements.ts",
|
|
4829
|
+
"../src/bitgo/trading/itradingpartners.ts",
|
|
4830
|
+
"../src/bitgo/trading/payload.ts"
|
|
4831
|
+
],
|
|
4832
|
+
"../src/bitgo/trading/itradingpartners.ts": [
|
|
4833
|
+
"../src/bitgo/trading/itradingpartner.ts"
|
|
4834
|
+
],
|
|
4835
|
+
"../src/bitgo/trading/settlement.ts": [
|
|
4836
|
+
"../src/bitgo/trading/index.ts"
|
|
4837
|
+
],
|
|
4838
|
+
"../src/bitgo/trading/settlements.ts": [
|
|
4839
|
+
"../src/bitgo/bitgobase.ts",
|
|
4840
|
+
"../src/bitgo/trading/index.ts"
|
|
4841
|
+
],
|
|
4842
|
+
"../src/bitgo/trading/tradingaccount.ts": [
|
|
4843
|
+
"../src/bitgo/bitgobase.ts",
|
|
4844
|
+
"../src/bitgo/trading/index.ts",
|
|
4845
|
+
"../src/bitgo/wallet/index.ts"
|
|
4846
|
+
],
|
|
4847
|
+
"../src/bitgo/trading/tradingpartner.ts": [
|
|
4848
|
+
"../src/bitgo/bitgobase.ts",
|
|
4849
|
+
"../src/bitgo/trading/index.ts"
|
|
4850
|
+
],
|
|
4851
|
+
"../src/bitgo/trading/tradingpartners.ts": [
|
|
4852
|
+
"../src/bitgo/bitgobase.ts",
|
|
4853
|
+
"../src/bitgo/trading/index.ts"
|
|
4854
|
+
],
|
|
4855
|
+
"../src/bitgo/tss/ecdsa/ecdsa.ts": [
|
|
4856
|
+
"../src/account-lib/mpc/tss/index.ts",
|
|
4857
|
+
"../src/bitgo/tss/ecdsa/types.ts"
|
|
4858
|
+
],
|
|
4859
|
+
"../src/bitgo/tss/ecdsa/index.ts": [
|
|
4860
|
+
"../src/bitgo/tss/ecdsa/ecdsa.ts",
|
|
4861
|
+
"../src/bitgo/tss/ecdsa/types.ts"
|
|
4862
|
+
],
|
|
4863
|
+
"../src/bitgo/tss/ecdsa/types.ts": [
|
|
4864
|
+
"../src/account-lib/mpc/tss/index.ts"
|
|
4865
|
+
],
|
|
4866
|
+
"../src/bitgo/tss/eddsa/eddsa.ts": [
|
|
4867
|
+
"../src/account-lib/mpc/tss/index.ts",
|
|
4868
|
+
"../src/bitgo/bitgobase.ts",
|
|
4869
|
+
"../src/bitgo/tss/eddsa/types.ts",
|
|
4870
|
+
"../src/bitgo/utils/index.ts"
|
|
4871
|
+
],
|
|
4872
|
+
"../src/bitgo/tss/eddsa/index.ts": [
|
|
4873
|
+
"../src/bitgo/tss/eddsa/eddsa.ts",
|
|
4874
|
+
"../src/bitgo/tss/eddsa/types.ts"
|
|
4875
|
+
],
|
|
4876
|
+
"../src/bitgo/tss/eddsa/types.ts": [
|
|
4877
|
+
"../src/account-lib/mpc/tss/index.ts"
|
|
4878
|
+
],
|
|
4879
|
+
"../src/bitgo/tss/index.ts": [
|
|
4880
|
+
"../src/bitgo/tss/ecdsa/index.ts",
|
|
4881
|
+
"../src/bitgo/tss/eddsa/index.ts",
|
|
4882
|
+
"../src/bitgo/tss/types.ts"
|
|
4883
|
+
],
|
|
4884
|
+
"../src/bitgo/utils/abstractutxocoinutil.ts": [
|
|
4885
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
4886
|
+
],
|
|
4887
|
+
"../src/bitgo/utils/blsutils.ts": [
|
|
4888
|
+
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
4889
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4890
|
+
"../src/bitgo/bitgobase.ts",
|
|
4891
|
+
"../src/bitgo/keychain/index.ts",
|
|
4892
|
+
"../src/bitgo/utils/iblsutils.ts",
|
|
4893
|
+
"../src/bitgo/utils/mpcutils.ts"
|
|
4894
|
+
],
|
|
4895
|
+
"../src/bitgo/utils/iblsutils.ts": [
|
|
4896
|
+
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
4897
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4898
|
+
"../src/bitgo/keychain/index.ts"
|
|
4899
|
+
],
|
|
4900
|
+
"../src/bitgo/utils/index.ts": [
|
|
4901
|
+
"../src/bitgo/utils/abstractutxocoinutil.ts",
|
|
4902
|
+
"../src/bitgo/utils/blsutils.ts",
|
|
4903
|
+
"../src/bitgo/utils/iblsutils.ts",
|
|
4904
|
+
"../src/bitgo/utils/mpcutils.ts",
|
|
4905
|
+
"../src/bitgo/utils/opengpgutils.ts",
|
|
4906
|
+
"../src/bitgo/utils/promise-utils.ts",
|
|
4907
|
+
"../src/bitgo/utils/triple.ts",
|
|
4908
|
+
"../src/bitgo/utils/tss/index.ts",
|
|
4909
|
+
"../src/bitgo/utils/util.ts"
|
|
4910
|
+
],
|
|
4911
|
+
"../src/bitgo/utils/mpcutils.ts": [
|
|
4912
|
+
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
4913
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4914
|
+
"../src/bitgo/bitgobase.ts",
|
|
4915
|
+
"../src/bitgo/keychain/index.ts"
|
|
4916
|
+
],
|
|
4917
|
+
"../src/bitgo/utils/opengpgutils.ts": [
|
|
4918
|
+
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
4919
|
+
"../src/bitgo/bitgobase.ts"
|
|
4920
|
+
],
|
|
4921
|
+
"../src/bitgo/utils/tss/eddsa/eddsa.ts": [
|
|
4922
|
+
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
4923
|
+
"../src/account-lib/mpc/tss/index.ts",
|
|
4924
|
+
"../src/api/index.ts",
|
|
4925
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4926
|
+
"../src/bitgo/bitgobase.ts",
|
|
4927
|
+
"../src/bitgo/keychain/index.ts",
|
|
4928
|
+
"../src/bitgo/utils/mpcutils.ts",
|
|
4929
|
+
"../src/bitgo/utils/tss/eddsa/types.ts",
|
|
4930
|
+
"../src/bitgo/wallet/index.ts"
|
|
4931
|
+
],
|
|
4932
|
+
"../src/bitgo/utils/tss/eddsa/index.ts": [
|
|
4933
|
+
"../src/bitgo/utils/tss/eddsa/eddsa.ts",
|
|
4934
|
+
"../src/bitgo/utils/tss/eddsa/types.ts"
|
|
4935
|
+
],
|
|
4936
|
+
"../src/bitgo/utils/tss/eddsa/types.ts": [
|
|
4937
|
+
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
4938
|
+
"../src/account-lib/mpc/tss/index.ts",
|
|
4939
|
+
"../src/api/index.ts",
|
|
4940
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4941
|
+
"../src/bitgo/keychain/index.ts",
|
|
4942
|
+
"../src/bitgo/wallet/index.ts"
|
|
4943
|
+
],
|
|
4944
|
+
"../src/bitgo/utils/tss/index.ts": [
|
|
4945
|
+
"../src/bitgo/utils/tss/eddsa/index.ts"
|
|
4946
|
+
],
|
|
4947
|
+
"../src/bitgo/utils/util.ts": [
|
|
4948
|
+
"../src/api/index.ts"
|
|
4949
|
+
],
|
|
4950
|
+
"../src/bitgo/wallet/index.ts": [
|
|
4951
|
+
"../src/bitgo/wallet/iwallet.ts",
|
|
4952
|
+
"../src/bitgo/wallet/iwallets.ts",
|
|
4953
|
+
"../src/bitgo/wallet/wallet.ts",
|
|
4954
|
+
"../src/bitgo/wallet/wallets.ts"
|
|
4955
|
+
],
|
|
4956
|
+
"../src/bitgo/wallet/iwallet.ts": [
|
|
4957
|
+
"../src/api/index.ts",
|
|
4958
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4959
|
+
"../src/bitgo/bitgobase.ts",
|
|
4960
|
+
"../src/bitgo/keychain/index.ts",
|
|
4961
|
+
"../src/bitgo/pendingapproval/index.ts",
|
|
4962
|
+
"../src/bitgo/trading/index.ts"
|
|
4963
|
+
],
|
|
4964
|
+
"../src/bitgo/wallet/iwallets.ts": [
|
|
4965
|
+
"../src/api/index.ts",
|
|
4966
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4967
|
+
"../src/bitgo/wallet/iwallet.ts",
|
|
4968
|
+
"../src/bitgo/wallet/wallet.ts"
|
|
4969
|
+
],
|
|
4970
|
+
"../src/bitgo/wallet/wallet.ts": [
|
|
4971
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4972
|
+
"../src/bitgo/bitgobase.ts",
|
|
4973
|
+
"../src/bitgo/pendingapproval/index.ts",
|
|
4974
|
+
"../src/bitgo/trading/tradingaccount.ts",
|
|
4975
|
+
"../src/bitgo/wallet/iwallet.ts"
|
|
4976
|
+
],
|
|
4977
|
+
"../src/bitgo/wallet/wallets.ts": [
|
|
4978
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4979
|
+
"../src/bitgo/bitgobase.ts",
|
|
4980
|
+
"../src/bitgo/wallet/iwallets.ts",
|
|
4981
|
+
"../src/bitgo/wallet/wallet.ts"
|
|
4982
|
+
],
|
|
4983
|
+
"../src/bitgo/webhook/index.ts": [
|
|
4984
|
+
"../src/bitgo/webhook/iwebhooks.ts",
|
|
4985
|
+
"../src/bitgo/webhook/webhooks.ts"
|
|
4986
|
+
],
|
|
4987
|
+
"../src/bitgo/webhook/webhooks.ts": [
|
|
4988
|
+
"../src/bitgo/basecoin/index.ts",
|
|
4989
|
+
"../src/bitgo/bitgobase.ts",
|
|
4990
|
+
"../src/bitgo/webhook/iwebhooks.ts"
|
|
4991
|
+
],
|
|
2307
4992
|
"../src/common.ts": [
|
|
2308
|
-
"../src/
|
|
4993
|
+
"../src/bitgo/index.ts"
|
|
2309
4994
|
],
|
|
2310
4995
|
"../src/index.ts": [
|
|
2311
|
-
"../src/
|
|
2312
|
-
"../src/
|
|
2313
|
-
"../src/
|
|
4996
|
+
"../src/account-lib/index.ts",
|
|
4997
|
+
"../src/api/index.ts",
|
|
4998
|
+
"../src/bitgo/index.ts",
|
|
4999
|
+
"../src/bitgojserror.ts",
|
|
5000
|
+
"../src/common.ts"
|
|
5001
|
+
],
|
|
5002
|
+
"../../statics/dist/src/account.d.ts": [
|
|
5003
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5004
|
+
"../../statics/dist/src/base.d.ts",
|
|
5005
|
+
"../../statics/dist/src/networks.d.ts"
|
|
5006
|
+
],
|
|
5007
|
+
"../../statics/dist/src/base.d.ts": [
|
|
5008
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5009
|
+
"../../statics/dist/src/networks.d.ts"
|
|
5010
|
+
],
|
|
5011
|
+
"../../statics/dist/src/coins.d.ts": [
|
|
5012
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5013
|
+
"../../statics/dist/src/map.d.ts"
|
|
5014
|
+
],
|
|
5015
|
+
"../../statics/dist/src/errors.d.ts": [
|
|
5016
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5017
|
+
"../../statics/dist/src/base.d.ts"
|
|
5018
|
+
],
|
|
5019
|
+
"../../statics/dist/src/index.d.ts": [
|
|
5020
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5021
|
+
"../../statics/dist/src/account.d.ts",
|
|
5022
|
+
"../../statics/dist/src/base.d.ts",
|
|
5023
|
+
"../../statics/dist/src/coins.d.ts",
|
|
5024
|
+
"../../statics/dist/src/errors.d.ts",
|
|
5025
|
+
"../../statics/dist/src/map.d.ts",
|
|
5026
|
+
"../../statics/dist/src/networks.d.ts",
|
|
5027
|
+
"../../statics/dist/src/ofc.d.ts",
|
|
5028
|
+
"../../statics/dist/src/utxo.d.ts"
|
|
5029
|
+
],
|
|
5030
|
+
"../../statics/dist/src/map.d.ts": [
|
|
5031
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5032
|
+
"../../statics/dist/src/base.d.ts"
|
|
5033
|
+
],
|
|
5034
|
+
"../../statics/dist/src/networks.d.ts": [
|
|
5035
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5036
|
+
"../../statics/dist/src/base.d.ts"
|
|
5037
|
+
],
|
|
5038
|
+
"../../statics/dist/src/ofc.d.ts": [
|
|
5039
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5040
|
+
"../../statics/dist/src/base.d.ts",
|
|
5041
|
+
"../../statics/dist/src/networks.d.ts"
|
|
5042
|
+
],
|
|
5043
|
+
"../../statics/dist/src/utxo.d.ts": [
|
|
5044
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5045
|
+
"../../statics/dist/src/base.d.ts",
|
|
5046
|
+
"../../statics/dist/src/networks.d.ts"
|
|
5047
|
+
],
|
|
5048
|
+
"../../utxo-lib/dist/src/address.d.ts": [
|
|
5049
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5050
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5051
|
+
"../../../node_modules/bitcoinjs-lib/types/address.d.ts",
|
|
5052
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
5053
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
5054
|
+
],
|
|
5055
|
+
"../../utxo-lib/dist/src/addressformat.d.ts": [
|
|
5056
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5057
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5058
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
5059
|
+
],
|
|
5060
|
+
"../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts": [
|
|
5061
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5062
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5063
|
+
"../../utxo-lib/dist/src/addressformat.d.ts",
|
|
5064
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
5065
|
+
],
|
|
5066
|
+
"../../utxo-lib/dist/src/bitgo/bitcoincash/index.d.ts": [
|
|
5067
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5068
|
+
"../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts"
|
|
5069
|
+
],
|
|
5070
|
+
"../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts": [
|
|
5071
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5072
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5073
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
5074
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
5075
|
+
],
|
|
5076
|
+
"../../utxo-lib/dist/src/bitgo/dash/dashtransactionbuilder.d.ts": [
|
|
5077
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5078
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5079
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
5080
|
+
"../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts",
|
|
5081
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
5082
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
5083
|
+
],
|
|
5084
|
+
"../../utxo-lib/dist/src/bitgo/dash/index.d.ts": [
|
|
5085
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5086
|
+
"../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts",
|
|
5087
|
+
"../../utxo-lib/dist/src/bitgo/dash/dashtransactionbuilder.d.ts"
|
|
5088
|
+
],
|
|
5089
|
+
"../../utxo-lib/dist/src/bitgo/index.d.ts": [
|
|
5090
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5091
|
+
"../../utxo-lib/dist/src/bitgo/bitcoincash/index.d.ts",
|
|
5092
|
+
"../../utxo-lib/dist/src/bitgo/dash/index.d.ts",
|
|
5093
|
+
"../../utxo-lib/dist/src/bitgo/keyutil.d.ts",
|
|
5094
|
+
"../../utxo-lib/dist/src/bitgo/nonstandardhalfsigned.d.ts",
|
|
5095
|
+
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts",
|
|
5096
|
+
"../../utxo-lib/dist/src/bitgo/signature.d.ts",
|
|
5097
|
+
"../../utxo-lib/dist/src/bitgo/transaction.d.ts",
|
|
5098
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
5099
|
+
"../../utxo-lib/dist/src/bitgo/unspent.d.ts",
|
|
5100
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
5101
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
5102
|
+
"../../utxo-lib/dist/src/bitgo/wallet/index.d.ts",
|
|
5103
|
+
"../../utxo-lib/dist/src/bitgo/zcash/index.d.ts"
|
|
5104
|
+
],
|
|
5105
|
+
"../../utxo-lib/dist/src/bitgo/keyutil.d.ts": [
|
|
5106
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5107
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5108
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
5109
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
5110
|
+
],
|
|
5111
|
+
"../../utxo-lib/dist/src/bitgo/nonstandardhalfsigned.d.ts": [
|
|
5112
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5113
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
5114
|
+
],
|
|
5115
|
+
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts": [
|
|
5116
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5117
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5118
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
5119
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
5120
|
+
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts",
|
|
5121
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
5122
|
+
],
|
|
5123
|
+
"../../utxo-lib/dist/src/bitgo/signature.d.ts": [
|
|
5124
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5125
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5126
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
5127
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
5128
|
+
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts",
|
|
5129
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
5130
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
5131
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
5132
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
5133
|
+
],
|
|
5134
|
+
"../../utxo-lib/dist/src/bitgo/transaction.d.ts": [
|
|
5135
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5136
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5137
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
5138
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
5139
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
5140
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
5141
|
+
],
|
|
5142
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts": [
|
|
5143
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
5144
|
+
],
|
|
5145
|
+
"../../utxo-lib/dist/src/bitgo/unspent.d.ts": [
|
|
5146
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5147
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5148
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
5149
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
5150
|
+
],
|
|
5151
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts": [
|
|
5152
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5153
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5154
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
5155
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
5156
|
+
],
|
|
5157
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts": [
|
|
5158
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5159
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5160
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
5161
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
5162
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
5163
|
+
],
|
|
5164
|
+
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts": [
|
|
5165
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5166
|
+
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts"
|
|
5167
|
+
],
|
|
5168
|
+
"../../utxo-lib/dist/src/bitgo/wallet/index.d.ts": [
|
|
5169
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5170
|
+
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts",
|
|
5171
|
+
"../../utxo-lib/dist/src/bitgo/wallet/unspent.d.ts",
|
|
5172
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts",
|
|
5173
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletscripts.d.ts",
|
|
5174
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletunspentsigner.d.ts"
|
|
5175
|
+
],
|
|
5176
|
+
"../../utxo-lib/dist/src/bitgo/wallet/unspent.d.ts": [
|
|
5177
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5178
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
5179
|
+
"../../utxo-lib/dist/src/bitgo/unspent.d.ts",
|
|
5180
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
5181
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
5182
|
+
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts",
|
|
5183
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts",
|
|
5184
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletunspentsigner.d.ts"
|
|
5185
|
+
],
|
|
5186
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts": [
|
|
5187
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5188
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5189
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
5190
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts"
|
|
5191
|
+
],
|
|
5192
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletscripts.d.ts": [
|
|
5193
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5194
|
+
"../../utxo-lib/dist/src/bitgo/index.d.ts",
|
|
5195
|
+
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts",
|
|
5196
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts",
|
|
5197
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
5198
|
+
],
|
|
5199
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletunspentsigner.d.ts": [
|
|
5200
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5201
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
5202
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
5203
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts"
|
|
2314
5204
|
],
|
|
2315
|
-
"
|
|
2316
|
-
"
|
|
5205
|
+
"../../utxo-lib/dist/src/bitgo/zcash/index.d.ts": [
|
|
5206
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5207
|
+
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts",
|
|
5208
|
+
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransactionbuilder.d.ts"
|
|
5209
|
+
],
|
|
5210
|
+
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts": [
|
|
5211
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5212
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5213
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
5214
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
5215
|
+
],
|
|
5216
|
+
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransactionbuilder.d.ts": [
|
|
5217
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
5218
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5219
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
5220
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
5221
|
+
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts",
|
|
5222
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
5223
|
+
],
|
|
5224
|
+
"../../utxo-lib/dist/src/index.d.ts": [
|
|
5225
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
5226
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
5227
|
+
"../../utxo-lib/dist/src/address.d.ts",
|
|
5228
|
+
"../../utxo-lib/dist/src/addressformat.d.ts",
|
|
5229
|
+
"../../utxo-lib/dist/src/bitgo/index.d.ts",
|
|
5230
|
+
"../../utxo-lib/dist/src/networks.d.ts"
|
|
5231
|
+
],
|
|
5232
|
+
"../../utxo-lib/dist/src/networks.d.ts": [
|
|
5233
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
5234
|
+
],
|
|
5235
|
+
"../../../node_modules/@noble/secp256k1/lib/index.d.ts": [
|
|
5236
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2317
5237
|
],
|
|
2318
|
-
"
|
|
2319
|
-
"
|
|
2320
|
-
"../src/v2/types.ts"
|
|
5238
|
+
"../../../node_modules/@stablelib/hex/lib/hex.d.ts": [
|
|
5239
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
2321
5240
|
],
|
|
2322
5241
|
"../../../node_modules/@types/archy/index.d.ts": [
|
|
2323
5242
|
"../../../node_modules/@types/node/util.d.ts"
|
|
@@ -3314,12 +6233,244 @@
|
|
|
3314
6233
|
"../../../node_modules/bignumber.js/bignumber.d.ts": [
|
|
3315
6234
|
"../../../node_modules/@types/node/util.d.ts"
|
|
3316
6235
|
],
|
|
6236
|
+
"../../../node_modules/bip174/src/lib/interfaces.d.ts": [
|
|
6237
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6238
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6239
|
+
],
|
|
6240
|
+
"../../../node_modules/bip174/src/lib/psbt.d.ts": [
|
|
6241
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6242
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6243
|
+
"../../../node_modules/bip174/src/lib/interfaces.d.ts"
|
|
6244
|
+
],
|
|
6245
|
+
"../../../node_modules/bip32/types/bip32.d.ts": [
|
|
6246
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6247
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6248
|
+
],
|
|
6249
|
+
"../../../node_modules/bip32/types/index.d.ts": [
|
|
6250
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6251
|
+
"../../../node_modules/bip32/types/bip32.d.ts"
|
|
6252
|
+
],
|
|
6253
|
+
"../../../node_modules/bitcoinjs-lib/types/address.d.ts": [
|
|
6254
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6255
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6256
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts"
|
|
6257
|
+
],
|
|
6258
|
+
"../../../node_modules/bitcoinjs-lib/types/block.d.ts": [
|
|
6259
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6260
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6261
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts"
|
|
6262
|
+
],
|
|
6263
|
+
"../../../node_modules/bitcoinjs-lib/types/classify.d.ts": [
|
|
6264
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6265
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6266
|
+
],
|
|
6267
|
+
"../../../node_modules/bitcoinjs-lib/types/crypto.d.ts": [
|
|
6268
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6269
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6270
|
+
],
|
|
6271
|
+
"../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts": [
|
|
6272
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6273
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6274
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts"
|
|
6275
|
+
],
|
|
6276
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts": [
|
|
6277
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6278
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
6279
|
+
"../../../node_modules/bitcoinjs-lib/types/address.d.ts",
|
|
6280
|
+
"../../../node_modules/bitcoinjs-lib/types/block.d.ts",
|
|
6281
|
+
"../../../node_modules/bitcoinjs-lib/types/classify.d.ts",
|
|
6282
|
+
"../../../node_modules/bitcoinjs-lib/types/crypto.d.ts",
|
|
6283
|
+
"../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts",
|
|
6284
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
6285
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts",
|
|
6286
|
+
"../../../node_modules/bitcoinjs-lib/types/psbt.d.ts",
|
|
6287
|
+
"../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts",
|
|
6288
|
+
"../../../node_modules/bitcoinjs-lib/types/script.d.ts",
|
|
6289
|
+
"../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts",
|
|
6290
|
+
"../../../node_modules/bitcoinjs-lib/types/taproot.d.ts",
|
|
6291
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts",
|
|
6292
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts"
|
|
6293
|
+
],
|
|
6294
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts": [
|
|
6295
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6296
|
+
],
|
|
6297
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts": [
|
|
6298
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6299
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
6300
|
+
],
|
|
6301
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts": [
|
|
6302
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6303
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6304
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
6305
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts",
|
|
6306
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts",
|
|
6307
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts",
|
|
6308
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts",
|
|
6309
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts",
|
|
6310
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts",
|
|
6311
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts",
|
|
6312
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts",
|
|
6313
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts"
|
|
6314
|
+
],
|
|
6315
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts": [
|
|
6316
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6317
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
6318
|
+
],
|
|
6319
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts": [
|
|
6320
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6321
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
6322
|
+
],
|
|
6323
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts": [
|
|
6324
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6325
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
6326
|
+
],
|
|
6327
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts": [
|
|
6328
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6329
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
6330
|
+
],
|
|
6331
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts": [
|
|
6332
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6333
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
6334
|
+
],
|
|
6335
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts": [
|
|
6336
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6337
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
6338
|
+
],
|
|
6339
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts": [
|
|
6340
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6341
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
6342
|
+
],
|
|
6343
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts": [
|
|
6344
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6345
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
6346
|
+
],
|
|
6347
|
+
"../../../node_modules/bitcoinjs-lib/types/psbt.d.ts": [
|
|
6348
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6349
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6350
|
+
"../../../node_modules/bip174/src/lib/interfaces.d.ts",
|
|
6351
|
+
"../../../node_modules/bip174/src/lib/psbt.d.ts",
|
|
6352
|
+
"../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts",
|
|
6353
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
6354
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts"
|
|
6355
|
+
],
|
|
6356
|
+
"../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts": [
|
|
6357
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6358
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6359
|
+
],
|
|
6360
|
+
"../../../node_modules/bitcoinjs-lib/types/script.d.ts": [
|
|
6361
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6362
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6363
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts",
|
|
6364
|
+
"../../../node_modules/bitcoinjs-lib/types/script_number.d.ts",
|
|
6365
|
+
"../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts"
|
|
6366
|
+
],
|
|
6367
|
+
"../../../node_modules/bitcoinjs-lib/types/script_number.d.ts": [
|
|
6368
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6369
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6370
|
+
],
|
|
6371
|
+
"../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts": [
|
|
6372
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6373
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6374
|
+
],
|
|
6375
|
+
"../../../node_modules/bitcoinjs-lib/types/taproot.d.ts": [
|
|
6376
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6377
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6378
|
+
],
|
|
6379
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts": [
|
|
6380
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6381
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6382
|
+
],
|
|
6383
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts": [
|
|
6384
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6385
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6386
|
+
"../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts",
|
|
6387
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
6388
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts"
|
|
6389
|
+
],
|
|
6390
|
+
"../../../node_modules/bitcoinjs-message/index.d.ts": [
|
|
6391
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6392
|
+
],
|
|
3317
6393
|
"../../../node_modules/buffer/index.d.ts": [
|
|
3318
6394
|
"../../../node_modules/@types/node/util.d.ts"
|
|
3319
6395
|
],
|
|
3320
6396
|
"../../../node_modules/csstype/index.d.ts": [
|
|
3321
6397
|
"../../../node_modules/@types/node/util.d.ts"
|
|
3322
6398
|
],
|
|
6399
|
+
"../../../node_modules/ethereumjs-util/dist/account.d.ts": [
|
|
6400
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6401
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6402
|
+
],
|
|
6403
|
+
"../../../node_modules/ethereumjs-util/dist/bytes.d.ts": [
|
|
6404
|
+
"../../../node_modules/@types/bn.js/index.d.ts",
|
|
6405
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6406
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6407
|
+
],
|
|
6408
|
+
"../../../node_modules/ethereumjs-util/dist/constants.d.ts": [
|
|
6409
|
+
"../../../node_modules/@types/bn.js/index.d.ts",
|
|
6410
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6411
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6412
|
+
],
|
|
6413
|
+
"../../../node_modules/ethereumjs-util/dist/hash.d.ts": [
|
|
6414
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6415
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6416
|
+
"../../../node_modules/rlp/dist/index.d.ts"
|
|
6417
|
+
],
|
|
6418
|
+
"../../../node_modules/ethereumjs-util/dist/index.d.ts": [
|
|
6419
|
+
"../../../node_modules/@types/bn.js/index.d.ts",
|
|
6420
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6421
|
+
"../../../node_modules/ethereumjs-util/dist/account.d.ts",
|
|
6422
|
+
"../../../node_modules/ethereumjs-util/dist/bytes.d.ts",
|
|
6423
|
+
"../../../node_modules/ethereumjs-util/dist/constants.d.ts",
|
|
6424
|
+
"../../../node_modules/ethereumjs-util/dist/hash.d.ts",
|
|
6425
|
+
"../../../node_modules/ethereumjs-util/dist/object.d.ts",
|
|
6426
|
+
"../../../node_modules/ethereumjs-util/dist/signature.d.ts",
|
|
6427
|
+
"../../../node_modules/rlp/dist/index.d.ts"
|
|
6428
|
+
],
|
|
6429
|
+
"../../../node_modules/ethereumjs-util/dist/object.d.ts": [
|
|
6430
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6431
|
+
],
|
|
6432
|
+
"../../../node_modules/ethereumjs-util/dist/signature.d.ts": [
|
|
6433
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6434
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6435
|
+
],
|
|
6436
|
+
"../../../node_modules/noble-bls12-381/index.d.ts": [
|
|
6437
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6438
|
+
"../../../node_modules/noble-bls12-381/math.d.ts"
|
|
6439
|
+
],
|
|
6440
|
+
"../../../node_modules/noble-bls12-381/math.d.ts": [
|
|
6441
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6442
|
+
],
|
|
6443
|
+
"../../../node_modules/openpgp/openpgp.d.ts": [
|
|
6444
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6445
|
+
],
|
|
6446
|
+
"../../../node_modules/paillier-bigint/types/generaterandomkeys.d.ts": [
|
|
6447
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6448
|
+
"../../../node_modules/paillier-bigint/types/privatekey.d.ts",
|
|
6449
|
+
"../../../node_modules/paillier-bigint/types/publickey.d.ts"
|
|
6450
|
+
],
|
|
6451
|
+
"../../../node_modules/paillier-bigint/types/index.d.ts": [
|
|
6452
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6453
|
+
"../../../node_modules/paillier-bigint/types/generaterandomkeys.d.ts",
|
|
6454
|
+
"../../../node_modules/paillier-bigint/types/privatekey.d.ts",
|
|
6455
|
+
"../../../node_modules/paillier-bigint/types/publickey.d.ts"
|
|
6456
|
+
],
|
|
6457
|
+
"../../../node_modules/paillier-bigint/types/privatekey.d.ts": [
|
|
6458
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6459
|
+
"../../../node_modules/paillier-bigint/types/publickey.d.ts"
|
|
6460
|
+
],
|
|
6461
|
+
"../../../node_modules/paillier-bigint/types/publickey.d.ts": [
|
|
6462
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6463
|
+
],
|
|
6464
|
+
"../../../node_modules/rlp/dist/index.d.ts": [
|
|
6465
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6466
|
+
"../../../node_modules/@types/node/util.d.ts",
|
|
6467
|
+
"../../../node_modules/rlp/dist/types.d.ts"
|
|
6468
|
+
],
|
|
6469
|
+
"../../../node_modules/rlp/dist/types.d.ts": [
|
|
6470
|
+
"../../../node_modules/@types/bn.js/index.d.ts",
|
|
6471
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6472
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6473
|
+
],
|
|
3323
6474
|
"../../../node_modules/should/should.d.ts": [
|
|
3324
6475
|
"../../../node_modules/@types/node/util.d.ts"
|
|
3325
6476
|
],
|
|
@@ -3329,6 +6480,9 @@
|
|
|
3329
6480
|
"../../../node_modules/tapable/tapable.d.ts": [
|
|
3330
6481
|
"../../../node_modules/@types/node/util.d.ts"
|
|
3331
6482
|
],
|
|
6483
|
+
"../../../node_modules/tweetnacl/nacl.d.ts": [
|
|
6484
|
+
"../../../node_modules/@types/node/util.d.ts"
|
|
6485
|
+
],
|
|
3332
6486
|
"../../../node_modules/typescript/lib/lib.dom.d.ts": [
|
|
3333
6487
|
"../../../node_modules/@types/node/util.d.ts"
|
|
3334
6488
|
],
|
|
@@ -3463,12 +6617,162 @@
|
|
|
3463
6617
|
]
|
|
3464
6618
|
},
|
|
3465
6619
|
"semanticDiagnosticsPerFile": [
|
|
3466
|
-
"../src/
|
|
6620
|
+
"../src/account-lib/basecoin/basekeypair.ts",
|
|
6621
|
+
"../src/account-lib/basecoin/basetransaction.ts",
|
|
6622
|
+
"../src/account-lib/basecoin/basetransactionbuilder.ts",
|
|
6623
|
+
"../src/account-lib/basecoin/basetransactionbuilderfactory.ts",
|
|
6624
|
+
"../src/account-lib/basecoin/baseutils.ts",
|
|
6625
|
+
"../src/account-lib/basecoin/blskeypair.ts",
|
|
6626
|
+
"../src/account-lib/basecoin/ed25519keypair.ts",
|
|
6627
|
+
"../src/account-lib/basecoin/enum.ts",
|
|
6628
|
+
"../src/account-lib/basecoin/errors.ts",
|
|
6629
|
+
"../src/account-lib/basecoin/iface.ts",
|
|
6630
|
+
"../src/account-lib/basecoin/index.ts",
|
|
6631
|
+
"../src/account-lib/basecoin/secp256k1extendedkeypair.ts",
|
|
6632
|
+
"../src/account-lib/index.ts",
|
|
6633
|
+
"../src/account-lib/mpc/curves/basecurve.ts",
|
|
6634
|
+
"../src/account-lib/mpc/curves/ed25519.ts",
|
|
6635
|
+
"../src/account-lib/mpc/curves/index.ts",
|
|
6636
|
+
"../src/account-lib/mpc/curves/secp256k1.ts",
|
|
6637
|
+
"../src/account-lib/mpc/hdtree.ts",
|
|
6638
|
+
"../src/account-lib/mpc/index.ts",
|
|
6639
|
+
"../src/account-lib/mpc/shamir.ts",
|
|
6640
|
+
"../src/account-lib/mpc/tss/ecdsa/ecdsa.ts",
|
|
6641
|
+
"../src/account-lib/mpc/tss/ecdsa/index.ts",
|
|
6642
|
+
"../src/account-lib/mpc/tss/ecdsa/types.ts",
|
|
6643
|
+
"../src/account-lib/mpc/tss/eddsa/eddsa.ts",
|
|
6644
|
+
"../src/account-lib/mpc/tss/eddsa/index.ts",
|
|
6645
|
+
"../src/account-lib/mpc/tss/eddsa/types.ts",
|
|
6646
|
+
"../src/account-lib/mpc/tss/index.ts",
|
|
6647
|
+
"../src/account-lib/mpc/util.ts",
|
|
6648
|
+
"../src/account-lib/util/crypto.ts",
|
|
6649
|
+
"../src/account-lib/util/ed25519keyderiver.ts",
|
|
6650
|
+
"../src/api/bip32path.ts",
|
|
6651
|
+
"../src/api/index.ts",
|
|
6652
|
+
"../src/api/types.ts",
|
|
6653
|
+
"../src/bitgo/basecoin/basecoin.ts",
|
|
6654
|
+
"../src/bitgo/basecoin/ibasecoin.ts",
|
|
6655
|
+
"../src/bitgo/basecoin/index.ts",
|
|
6656
|
+
"../src/bitgo/bip32util.ts",
|
|
6657
|
+
"../src/bitgo/bitcoin.ts",
|
|
6658
|
+
"../src/bitgo/bitgobase.ts",
|
|
6659
|
+
"../src/bitgo/coinfactory.ts",
|
|
6660
|
+
"../src/bitgo/config.ts",
|
|
6661
|
+
"../src/bitgo/ecdh.ts",
|
|
6662
|
+
"../src/bitgo/enterprise/enterprise.ts",
|
|
6663
|
+
"../src/bitgo/enterprise/enterprises.ts",
|
|
6664
|
+
"../src/bitgo/enterprise/ienterprise.ts",
|
|
6665
|
+
"../src/bitgo/enterprise/ienterprises.ts",
|
|
6666
|
+
"../src/bitgo/enterprise/index.ts",
|
|
6667
|
+
"../src/bitgo/environments.ts",
|
|
6668
|
+
"../src/bitgo/errors.ts",
|
|
6669
|
+
"../src/bitgo/index.ts",
|
|
6670
|
+
"../src/bitgo/internal/index.ts",
|
|
6671
|
+
"../src/bitgo/internal/internal.ts",
|
|
6672
|
+
"../src/bitgo/internal/keycard.ts",
|
|
6673
|
+
"../src/bitgo/keychain/ikeychains.ts",
|
|
6674
|
+
"../src/bitgo/keychain/index.ts",
|
|
6675
|
+
"../src/bitgo/keychain/keychains.ts",
|
|
6676
|
+
"../src/bitgo/market/imarkets.ts",
|
|
6677
|
+
"../src/bitgo/market/index.ts",
|
|
6678
|
+
"../src/bitgo/market/markets.ts",
|
|
6679
|
+
"../src/bitgo/pendingapproval/index.ts",
|
|
6680
|
+
"../src/bitgo/pendingapproval/ipendingapproval.ts",
|
|
6681
|
+
"../src/bitgo/pendingapproval/ipendingapprovals.ts",
|
|
6682
|
+
"../src/bitgo/pendingapproval/pendingapproval.ts",
|
|
6683
|
+
"../src/bitgo/pendingapproval/pendingapprovals.ts",
|
|
6684
|
+
"../src/bitgo/recovery/index.ts",
|
|
6685
|
+
"../src/bitgo/recovery/initiate.ts",
|
|
6686
|
+
"../src/bitgo/trading/affirmation.ts",
|
|
6687
|
+
"../src/bitgo/trading/affirmations.ts",
|
|
6688
|
+
"../src/bitgo/trading/iaffirmation.ts",
|
|
6689
|
+
"../src/bitgo/trading/iaffirmations.ts",
|
|
6690
|
+
"../src/bitgo/trading/index.ts",
|
|
6691
|
+
"../src/bitgo/trading/isettlement.ts",
|
|
6692
|
+
"../src/bitgo/trading/isettlements.ts",
|
|
6693
|
+
"../src/bitgo/trading/itradingaccount.ts",
|
|
6694
|
+
"../src/bitgo/trading/itradingpartner.ts",
|
|
6695
|
+
"../src/bitgo/trading/itradingpartners.ts",
|
|
6696
|
+
"../src/bitgo/trading/lock.ts",
|
|
6697
|
+
"../src/bitgo/trading/payload.ts",
|
|
6698
|
+
"../src/bitgo/trading/settlement.ts",
|
|
6699
|
+
"../src/bitgo/trading/settlements.ts",
|
|
6700
|
+
"../src/bitgo/trading/trade.ts",
|
|
6701
|
+
"../src/bitgo/trading/tradingaccount.ts",
|
|
6702
|
+
"../src/bitgo/trading/tradingpartner.ts",
|
|
6703
|
+
"../src/bitgo/trading/tradingpartners.ts",
|
|
6704
|
+
"../src/bitgo/tss/ecdsa/ecdsa.ts",
|
|
6705
|
+
"../src/bitgo/tss/ecdsa/index.ts",
|
|
6706
|
+
"../src/bitgo/tss/ecdsa/types.ts",
|
|
6707
|
+
"../src/bitgo/tss/eddsa/eddsa.ts",
|
|
6708
|
+
"../src/bitgo/tss/eddsa/index.ts",
|
|
6709
|
+
"../src/bitgo/tss/eddsa/types.ts",
|
|
6710
|
+
"../src/bitgo/tss/index.ts",
|
|
6711
|
+
"../src/bitgo/tss/types.ts",
|
|
6712
|
+
"../src/bitgo/types.ts",
|
|
6713
|
+
"../src/bitgo/utils/abstractutxocoinutil.ts",
|
|
6714
|
+
"../src/bitgo/utils/blsutils.ts",
|
|
6715
|
+
"../src/bitgo/utils/iblsutils.ts",
|
|
6716
|
+
"../src/bitgo/utils/index.ts",
|
|
6717
|
+
"../src/bitgo/utils/mpcutils.ts",
|
|
6718
|
+
"../src/bitgo/utils/opengpgutils.ts",
|
|
6719
|
+
"../src/bitgo/utils/promise-utils.ts",
|
|
6720
|
+
"../src/bitgo/utils/triple.ts",
|
|
6721
|
+
"../src/bitgo/utils/tss/eddsa/eddsa.ts",
|
|
6722
|
+
"../src/bitgo/utils/tss/eddsa/index.ts",
|
|
6723
|
+
"../src/bitgo/utils/tss/eddsa/types.ts",
|
|
6724
|
+
"../src/bitgo/utils/tss/index.ts",
|
|
6725
|
+
"../src/bitgo/utils/util.ts",
|
|
6726
|
+
"../src/bitgo/wallet/index.ts",
|
|
6727
|
+
"../src/bitgo/wallet/iwallet.ts",
|
|
6728
|
+
"../src/bitgo/wallet/iwallets.ts",
|
|
6729
|
+
"../src/bitgo/wallet/wallet.ts",
|
|
6730
|
+
"../src/bitgo/wallet/wallets.ts",
|
|
6731
|
+
"../src/bitgo/webhook/index.ts",
|
|
6732
|
+
"../src/bitgo/webhook/iwebhooks.ts",
|
|
6733
|
+
"../src/bitgo/webhook/webhooks.ts",
|
|
6734
|
+
"../src/bitgojserror.ts",
|
|
3467
6735
|
"../src/common.ts",
|
|
3468
6736
|
"../src/index.ts",
|
|
3469
|
-
"
|
|
3470
|
-
"
|
|
3471
|
-
"
|
|
6737
|
+
"../../statics/dist/src/account.d.ts",
|
|
6738
|
+
"../../statics/dist/src/base.d.ts",
|
|
6739
|
+
"../../statics/dist/src/coins.d.ts",
|
|
6740
|
+
"../../statics/dist/src/errors.d.ts",
|
|
6741
|
+
"../../statics/dist/src/index.d.ts",
|
|
6742
|
+
"../../statics/dist/src/map.d.ts",
|
|
6743
|
+
"../../statics/dist/src/networks.d.ts",
|
|
6744
|
+
"../../statics/dist/src/ofc.d.ts",
|
|
6745
|
+
"../../statics/dist/src/utxo.d.ts",
|
|
6746
|
+
"../../utxo-lib/dist/src/address.d.ts",
|
|
6747
|
+
"../../utxo-lib/dist/src/addressformat.d.ts",
|
|
6748
|
+
"../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts",
|
|
6749
|
+
"../../utxo-lib/dist/src/bitgo/bitcoincash/index.d.ts",
|
|
6750
|
+
"../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts",
|
|
6751
|
+
"../../utxo-lib/dist/src/bitgo/dash/dashtransactionbuilder.d.ts",
|
|
6752
|
+
"../../utxo-lib/dist/src/bitgo/dash/index.d.ts",
|
|
6753
|
+
"../../utxo-lib/dist/src/bitgo/index.d.ts",
|
|
6754
|
+
"../../utxo-lib/dist/src/bitgo/keyutil.d.ts",
|
|
6755
|
+
"../../utxo-lib/dist/src/bitgo/nonstandardhalfsigned.d.ts",
|
|
6756
|
+
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts",
|
|
6757
|
+
"../../utxo-lib/dist/src/bitgo/signature.d.ts",
|
|
6758
|
+
"../../utxo-lib/dist/src/bitgo/transaction.d.ts",
|
|
6759
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
6760
|
+
"../../utxo-lib/dist/src/bitgo/unspent.d.ts",
|
|
6761
|
+
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
6762
|
+
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
6763
|
+
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts",
|
|
6764
|
+
"../../utxo-lib/dist/src/bitgo/wallet/index.d.ts",
|
|
6765
|
+
"../../utxo-lib/dist/src/bitgo/wallet/unspent.d.ts",
|
|
6766
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts",
|
|
6767
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletscripts.d.ts",
|
|
6768
|
+
"../../utxo-lib/dist/src/bitgo/wallet/walletunspentsigner.d.ts",
|
|
6769
|
+
"../../utxo-lib/dist/src/bitgo/zcash/index.d.ts",
|
|
6770
|
+
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts",
|
|
6771
|
+
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransactionbuilder.d.ts",
|
|
6772
|
+
"../../utxo-lib/dist/src/index.d.ts",
|
|
6773
|
+
"../../utxo-lib/dist/src/networks.d.ts",
|
|
6774
|
+
"../../../node_modules/@noble/secp256k1/lib/index.d.ts",
|
|
6775
|
+
"../../../node_modules/@stablelib/hex/lib/hex.d.ts",
|
|
3472
6776
|
"../../../node_modules/@types/archy/index.d.ts",
|
|
3473
6777
|
"../../../node_modules/@types/argparse/index.d.ts",
|
|
3474
6778
|
"../../../node_modules/@types/aria-query/index.d.ts",
|
|
@@ -3635,11 +6939,58 @@
|
|
|
3635
6939
|
"../../../node_modules/anymatch/index.d.ts",
|
|
3636
6940
|
"../../../node_modules/base-x/src/index.d.ts",
|
|
3637
6941
|
"../../../node_modules/bignumber.js/bignumber.d.ts",
|
|
6942
|
+
"../../../node_modules/bip174/src/lib/interfaces.d.ts",
|
|
6943
|
+
"../../../node_modules/bip174/src/lib/psbt.d.ts",
|
|
6944
|
+
"../../../node_modules/bip32/types/bip32.d.ts",
|
|
6945
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
6946
|
+
"../../../node_modules/bitcoinjs-lib/types/address.d.ts",
|
|
6947
|
+
"../../../node_modules/bitcoinjs-lib/types/block.d.ts",
|
|
6948
|
+
"../../../node_modules/bitcoinjs-lib/types/classify.d.ts",
|
|
6949
|
+
"../../../node_modules/bitcoinjs-lib/types/crypto.d.ts",
|
|
6950
|
+
"../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts",
|
|
6951
|
+
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
6952
|
+
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
6953
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts",
|
|
6954
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts",
|
|
6955
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts",
|
|
6956
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts",
|
|
6957
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts",
|
|
6958
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts",
|
|
6959
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts",
|
|
6960
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts",
|
|
6961
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts",
|
|
6962
|
+
"../../../node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts",
|
|
6963
|
+
"../../../node_modules/bitcoinjs-lib/types/psbt.d.ts",
|
|
6964
|
+
"../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts",
|
|
6965
|
+
"../../../node_modules/bitcoinjs-lib/types/script.d.ts",
|
|
6966
|
+
"../../../node_modules/bitcoinjs-lib/types/script_number.d.ts",
|
|
6967
|
+
"../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts",
|
|
6968
|
+
"../../../node_modules/bitcoinjs-lib/types/taproot.d.ts",
|
|
6969
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts",
|
|
6970
|
+
"../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts",
|
|
6971
|
+
"../../../node_modules/bitcoinjs-message/index.d.ts",
|
|
3638
6972
|
"../../../node_modules/buffer/index.d.ts",
|
|
3639
6973
|
"../../../node_modules/csstype/index.d.ts",
|
|
6974
|
+
"../../../node_modules/ethereumjs-util/dist/account.d.ts",
|
|
6975
|
+
"../../../node_modules/ethereumjs-util/dist/bytes.d.ts",
|
|
6976
|
+
"../../../node_modules/ethereumjs-util/dist/constants.d.ts",
|
|
6977
|
+
"../../../node_modules/ethereumjs-util/dist/hash.d.ts",
|
|
6978
|
+
"../../../node_modules/ethereumjs-util/dist/index.d.ts",
|
|
6979
|
+
"../../../node_modules/ethereumjs-util/dist/object.d.ts",
|
|
6980
|
+
"../../../node_modules/ethereumjs-util/dist/signature.d.ts",
|
|
6981
|
+
"../../../node_modules/noble-bls12-381/index.d.ts",
|
|
6982
|
+
"../../../node_modules/noble-bls12-381/math.d.ts",
|
|
6983
|
+
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
6984
|
+
"../../../node_modules/paillier-bigint/types/generaterandomkeys.d.ts",
|
|
6985
|
+
"../../../node_modules/paillier-bigint/types/index.d.ts",
|
|
6986
|
+
"../../../node_modules/paillier-bigint/types/privatekey.d.ts",
|
|
6987
|
+
"../../../node_modules/paillier-bigint/types/publickey.d.ts",
|
|
6988
|
+
"../../../node_modules/rlp/dist/index.d.ts",
|
|
6989
|
+
"../../../node_modules/rlp/dist/types.d.ts",
|
|
3640
6990
|
"../../../node_modules/should/should.d.ts",
|
|
3641
6991
|
"../../../node_modules/source-map/source-map.d.ts",
|
|
3642
6992
|
"../../../node_modules/tapable/tapable.d.ts",
|
|
6993
|
+
"../../../node_modules/tweetnacl/nacl.d.ts",
|
|
3643
6994
|
"../../../node_modules/typescript/lib/lib.dom.d.ts",
|
|
3644
6995
|
"../../../node_modules/typescript/lib/lib.es2015.collection.d.ts",
|
|
3645
6996
|
"../../../node_modules/typescript/lib/lib.es2015.core.d.ts",
|