@aztec/aztec.js 0.0.0-test.1 → 0.0.1-commit.5476d83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dest/account/account.d.ts +59 -0
- package/dest/account/account.d.ts.map +1 -0
- package/dest/account/account.js +59 -0
- package/dest/account/account_contract.d.ts +43 -0
- package/dest/account/account_contract.d.ts.map +1 -0
- package/dest/account/{contract.js → account_contract.js} +7 -4
- package/dest/account/account_with_secret_key.d.ts +24 -0
- package/dest/account/account_with_secret_key.d.ts.map +1 -0
- package/dest/{wallet/account_wallet_with_private_key.js → account/account_with_secret_key.js} +5 -5
- package/dest/account/index.d.ts +4 -8
- package/dest/account/index.d.ts.map +1 -1
- package/dest/account/index.js +2 -6
- package/dest/account/interface.d.ts +2 -14
- package/dest/account/interface.d.ts.map +1 -1
- package/dest/account/interface.js +1 -0
- package/dest/account/signerless_account.d.ts +23 -0
- package/dest/account/signerless_account.d.ts.map +1 -0
- package/dest/account/signerless_account.js +27 -0
- package/dest/api/abi.d.ts +3 -2
- package/dest/api/abi.d.ts.map +1 -1
- package/dest/api/abi.js +1 -1
- package/dest/api/account.d.ts +7 -3
- package/dest/api/account.d.ts.map +1 -1
- package/dest/api/account.js +4 -1
- package/dest/api/addresses.d.ts +2 -1
- package/dest/api/addresses.d.ts.map +1 -1
- package/dest/api/addresses.js +1 -0
- package/dest/api/authorization.d.ts +5 -0
- package/dest/api/authorization.d.ts.map +1 -0
- package/dest/api/authorization.js +4 -0
- package/dest/api/block.d.ts +3 -0
- package/dest/api/block.d.ts.map +1 -0
- package/dest/api/block.js +2 -0
- package/dest/api/contract.d.ts +49 -0
- package/dest/api/contract.d.ts.map +1 -0
- package/dest/{contract/index.js → api/contract.js} +15 -11
- package/dest/api/crypto.d.ts +2 -0
- package/dest/api/crypto.d.ts.map +1 -0
- package/dest/api/crypto.js +1 -0
- package/dest/api/deployment.d.ts +5 -4
- package/dest/api/deployment.d.ts.map +1 -1
- package/dest/api/deployment.js +4 -3
- package/dest/api/eth_address.d.ts +1 -1
- package/dest/api/ethereum.d.ts +2 -0
- package/dest/api/ethereum.d.ts.map +1 -0
- package/dest/api/ethereum.js +1 -0
- package/dest/api/events.d.ts +12 -0
- package/dest/api/events.d.ts.map +1 -0
- package/dest/api/events.js +30 -0
- package/dest/api/fee.d.ts +2 -2
- package/dest/api/fee.d.ts.map +1 -1
- package/dest/api/fee.js +1 -1
- package/dest/api/fee_testing.d.ts +2 -0
- package/dest/api/fee_testing.d.ts.map +1 -0
- package/dest/api/fee_testing.js +1 -0
- package/dest/api/fields.d.ts +1 -1
- package/dest/api/keys.d.ts +4 -0
- package/dest/api/keys.d.ts.map +1 -0
- package/dest/api/keys.js +3 -0
- package/dest/api/log.d.ts +2 -1
- package/dest/api/log.d.ts.map +1 -1
- package/dest/api/log.js +1 -0
- package/dest/api/messaging.d.ts +3 -0
- package/dest/api/messaging.d.ts.map +1 -0
- package/dest/api/messaging.js +2 -0
- package/dest/api/node.d.ts +21 -0
- package/dest/api/node.d.ts.map +1 -0
- package/dest/api/node.js +18 -0
- package/dest/api/note.d.ts +2 -0
- package/dest/api/note.d.ts.map +1 -0
- package/dest/api/note.js +1 -0
- package/dest/api/protocol.d.ts +3 -0
- package/dest/api/protocol.d.ts.map +1 -0
- package/dest/api/protocol.js +2 -0
- package/dest/api/trees.d.ts +3 -0
- package/dest/api/trees.d.ts.map +1 -0
- package/dest/api/trees.js +2 -0
- package/dest/api/tx.d.ts +2 -0
- package/dest/api/tx.d.ts.map +1 -0
- package/dest/api/tx.js +1 -0
- package/dest/api/utils.d.ts +13 -0
- package/dest/api/utils.d.ts.map +1 -0
- package/dest/api/utils.js +12 -0
- package/dest/api/wallet.d.ts +4 -2
- package/dest/api/wallet.d.ts.map +1 -1
- package/dest/api/wallet.js +3 -1
- package/dest/authorization/call_authorization_request.d.ts +46 -0
- package/dest/authorization/call_authorization_request.d.ts.map +1 -0
- package/dest/authorization/call_authorization_request.js +49 -0
- package/dest/contract/base_contract_interaction.d.ts +16 -80
- package/dest/contract/base_contract_interaction.d.ts.map +1 -1
- package/dest/contract/base_contract_interaction.js +15 -128
- package/dest/contract/batch_call.d.ts +19 -21
- package/dest/contract/batch_call.d.ts.map +1 -1
- package/dest/contract/batch_call.js +86 -68
- package/dest/contract/checker.d.ts +2 -2
- package/dest/contract/checker.d.ts.map +1 -1
- package/dest/contract/checker.js +2 -2
- package/dest/contract/contract.d.ts +9 -8
- package/dest/contract/contract.d.ts.map +1 -1
- package/dest/contract/contract.js +10 -20
- package/dest/contract/contract_base.d.ts +7 -20
- package/dest/contract/contract_base.d.ts.map +1 -1
- package/dest/contract/contract_base.js +7 -14
- package/dest/contract/contract_function_interaction.d.ts +53 -45
- package/dest/contract/contract_function_interaction.d.ts.map +1 -1
- package/dest/contract/contract_function_interaction.js +78 -74
- package/dest/contract/deploy_method.d.ts +106 -60
- package/dest/contract/deploy_method.d.ts.map +1 -1
- package/dest/contract/deploy_method.js +125 -133
- package/dest/contract/deploy_sent_tx.d.ts +14 -11
- package/dest/contract/deploy_sent_tx.d.ts.map +1 -1
- package/dest/contract/deploy_sent_tx.js +18 -15
- package/dest/contract/get_gas_limits.d.ts +6 -7
- package/dest/contract/get_gas_limits.d.ts.map +1 -1
- package/dest/contract/get_gas_limits.js +9 -3
- package/dest/contract/interaction_options.d.ts +114 -0
- package/dest/contract/interaction_options.d.ts.map +1 -0
- package/dest/contract/interaction_options.js +46 -0
- package/dest/contract/protocol_contracts.d.ts +7 -7
- package/dest/contract/protocol_contracts.d.ts.map +1 -1
- package/dest/contract/protocol_contracts.js +7 -7
- package/dest/contract/sent_tx.d.ts +9 -19
- package/dest/contract/sent_tx.d.ts.map +1 -1
- package/dest/contract/sent_tx.js +31 -43
- package/dest/contract/unsafe_contract.d.ts +2 -2
- package/dest/contract/unsafe_contract.d.ts.map +1 -1
- package/dest/contract/unsafe_contract.js +1 -1
- package/dest/contract/wait_for_proven.d.ts +17 -0
- package/dest/contract/wait_for_proven.d.ts.map +1 -0
- package/dest/contract/wait_for_proven.js +17 -0
- package/dest/deployment/broadcast_function.d.ts +4 -4
- package/dest/deployment/broadcast_function.d.ts.map +1 -1
- package/dest/deployment/broadcast_function.js +27 -23
- package/dest/deployment/contract_deployer.d.ts +2 -2
- package/dest/deployment/contract_deployer.d.ts.map +1 -1
- package/dest/deployment/contract_deployer.js +1 -1
- package/dest/deployment/publish_class.d.ts +6 -0
- package/dest/deployment/publish_class.d.ts.map +1 -0
- package/dest/deployment/publish_class.js +17 -0
- package/dest/deployment/publish_instance.d.ts +10 -0
- package/dest/deployment/publish_instance.d.ts.map +1 -0
- package/dest/deployment/publish_instance.js +11 -0
- package/dest/ethereum/portal_manager.d.ts +138 -0
- package/dest/ethereum/portal_manager.d.ts.map +1 -0
- package/dest/{api/ethereum → ethereum}/portal_manager.js +136 -76
- package/dest/fee/fee_juice_payment_method_with_claim.d.ts +17 -12
- package/dest/fee/fee_juice_payment_method_with_claim.d.ts.map +1 -1
- package/dest/fee/fee_juice_payment_method_with_claim.js +26 -16
- package/dest/fee/fee_payment_method.d.ts +12 -8
- package/dest/fee/fee_payment_method.d.ts.map +1 -1
- package/dest/fee/private_fee_payment_method.d.ts +26 -9
- package/dest/fee/private_fee_payment_method.d.ts.map +1 -1
- package/dest/fee/private_fee_payment_method.js +44 -22
- package/dest/fee/public_fee_payment_method.d.ts +27 -10
- package/dest/fee/public_fee_payment_method.d.ts.map +1 -1
- package/dest/fee/public_fee_payment_method.js +46 -24
- package/dest/fee/sponsored_fee_payment.d.ts +17 -0
- package/dest/fee/sponsored_fee_payment.d.ts.map +1 -0
- package/dest/fee/sponsored_fee_payment.js +34 -0
- package/dest/utils/abi_types.d.ts +1 -3
- package/dest/utils/abi_types.d.ts.map +1 -1
- package/dest/utils/authwit.d.ts +82 -25
- package/dest/utils/authwit.d.ts.map +1 -1
- package/dest/utils/authwit.js +237 -40
- package/dest/utils/cross_chain.d.ts +24 -0
- package/dest/utils/cross_chain.d.ts.map +1 -0
- package/dest/utils/cross_chain.js +30 -0
- package/dest/utils/fee_juice.d.ts +4 -3
- package/dest/utils/fee_juice.d.ts.map +1 -1
- package/dest/utils/fee_juice.js +3 -2
- package/dest/utils/field_compressed_string.d.ts +1 -1
- package/dest/utils/field_compressed_string.d.ts.map +1 -1
- package/dest/utils/node.d.ts +2 -2
- package/dest/utils/node.d.ts.map +1 -1
- package/dest/utils/node.js +1 -1
- package/dest/utils/pub_key.d.ts +1 -1
- package/dest/utils/pub_key.d.ts.map +1 -1
- package/dest/utils/pub_key.js +1 -2
- package/dest/wallet/account_entrypoint_meta_payment_method.d.ts +34 -0
- package/dest/wallet/account_entrypoint_meta_payment_method.d.ts.map +1 -0
- package/dest/wallet/account_entrypoint_meta_payment_method.js +76 -0
- package/dest/wallet/account_manager.d.ts +66 -0
- package/dest/wallet/account_manager.d.ts.map +1 -0
- package/dest/wallet/account_manager.js +113 -0
- package/dest/wallet/deploy_account_method.d.ts +52 -0
- package/dest/wallet/deploy_account_method.d.ts.map +1 -0
- package/dest/wallet/deploy_account_method.js +77 -0
- package/dest/wallet/index.d.ts +3 -17
- package/dest/wallet/index.d.ts.map +1 -1
- package/dest/wallet/index.js +2 -20
- package/dest/wallet/wallet.d.ts +1965 -0
- package/dest/wallet/wallet.d.ts.map +1 -0
- package/dest/wallet/wallet.js +186 -0
- package/package.json +44 -35
- package/src/account/account.ts +96 -0
- package/src/account/{contract.ts → account_contract.ts} +24 -13
- package/src/{wallet/account_wallet_with_private_key.ts → account/account_with_secret_key.ts} +6 -8
- package/src/account/index.ts +3 -7
- package/src/account/interface.ts +1 -12
- package/src/account/signerless_account.ts +45 -0
- package/src/api/abi.ts +26 -0
- package/src/api/account.ts +6 -9
- package/src/api/addresses.ts +1 -0
- package/src/api/authorization.ts +14 -0
- package/src/api/block.ts +2 -0
- package/src/{contract/index.ts → api/contract.ts} +39 -14
- package/src/api/crypto.ts +1 -0
- package/src/api/deployment.ts +4 -3
- package/src/api/ethereum.ts +10 -0
- package/src/api/events.ts +44 -0
- package/src/api/fee.ts +1 -1
- package/src/api/fee_testing.ts +1 -0
- package/src/api/keys.ts +8 -0
- package/src/api/log.ts +1 -0
- package/src/api/messaging.ts +2 -0
- package/src/api/node.ts +20 -0
- package/src/api/note.ts +1 -0
- package/src/api/protocol.ts +2 -0
- package/src/api/trees.ts +2 -0
- package/src/api/tx.ts +13 -0
- package/src/api/utils.ts +14 -0
- package/src/api/wallet.ts +27 -5
- package/src/authorization/call_authorization_request.ts +63 -0
- package/src/contract/base_contract_interaction.ts +23 -166
- package/src/contract/batch_call.ts +106 -57
- package/src/contract/checker.ts +8 -3
- package/src/contract/contract.ts +14 -21
- package/src/contract/contract_base.ts +9 -26
- package/src/contract/contract_function_interaction.ts +135 -106
- package/src/contract/deploy_method.ts +205 -134
- package/src/contract/deploy_sent_tx.ts +24 -23
- package/src/contract/get_gas_limits.ts +15 -8
- package/src/contract/interaction_options.ts +163 -0
- package/src/contract/protocol_contracts.ts +10 -10
- package/src/contract/sent_tx.ts +41 -52
- package/src/contract/unsafe_contract.ts +2 -2
- package/src/contract/wait_for_proven.ts +38 -0
- package/src/deployment/broadcast_function.ts +57 -57
- package/src/deployment/contract_deployer.ts +4 -3
- package/src/deployment/publish_class.ts +34 -0
- package/src/deployment/publish_instance.ts +26 -0
- package/src/{api/ethereum → ethereum}/portal_manager.ts +164 -83
- package/src/fee/fee_juice_payment_method_with_claim.ts +48 -33
- package/src/fee/fee_payment_method.ts +11 -7
- package/src/fee/private_fee_payment_method.ts +79 -57
- package/src/fee/public_fee_payment_method.ts +93 -67
- package/src/fee/sponsored_fee_payment.ts +46 -0
- package/src/utils/authwit.ts +261 -53
- package/src/utils/cross_chain.ts +53 -0
- package/src/utils/fee_juice.ts +4 -4
- package/src/utils/node.ts +1 -1
- package/src/utils/pub_key.ts +1 -2
- package/src/wallet/account_entrypoint_meta_payment_method.ts +106 -0
- package/src/wallet/account_manager.ts +154 -0
- package/src/wallet/deploy_account_method.ts +126 -0
- package/src/wallet/index.ts +2 -33
- package/src/wallet/wallet.ts +318 -0
- package/dest/account/contract.d.ts +0 -37
- package/dest/account/contract.d.ts.map +0 -1
- package/dest/account/wallet.d.ts +0 -11
- package/dest/account/wallet.d.ts.map +0 -1
- package/dest/account/wallet.js +0 -3
- package/dest/account_manager/deploy_account_method.d.ts +0 -15
- package/dest/account_manager/deploy_account_method.d.ts.map +0 -1
- package/dest/account_manager/deploy_account_method.js +0 -43
- package/dest/account_manager/deploy_account_sent_tx.d.ts +0 -30
- package/dest/account_manager/deploy_account_sent_tx.d.ts.map +0 -1
- package/dest/account_manager/deploy_account_sent_tx.js +0 -29
- package/dest/account_manager/index.d.ts +0 -108
- package/dest/account_manager/index.d.ts.map +0 -1
- package/dest/account_manager/index.js +0 -159
- package/dest/api/cheat_codes.d.ts +0 -26
- package/dest/api/cheat_codes.d.ts.map +0 -1
- package/dest/api/cheat_codes.js +0 -25
- package/dest/api/entrypoint.d.ts +0 -2
- package/dest/api/entrypoint.d.ts.map +0 -1
- package/dest/api/entrypoint.js +0 -1
- package/dest/api/ethereum/anvil_test_watcher.d.ts +0 -32
- package/dest/api/ethereum/anvil_test_watcher.d.ts.map +0 -1
- package/dest/api/ethereum/anvil_test_watcher.js +0 -133
- package/dest/api/ethereum/chain_monitor.d.ts +0 -25
- package/dest/api/ethereum/chain_monitor.d.ts.map +0 -1
- package/dest/api/ethereum/chain_monitor.js +0 -74
- package/dest/api/ethereum/cheat_codes.d.ts +0 -63
- package/dest/api/ethereum/cheat_codes.d.ts.map +0 -1
- package/dest/api/ethereum/cheat_codes.js +0 -162
- package/dest/api/ethereum/index.d.ts +0 -7
- package/dest/api/ethereum/index.d.ts.map +0 -1
- package/dest/api/ethereum/index.js +0 -6
- package/dest/api/ethereum/l1_contracts.d.ts +0 -3
- package/dest/api/ethereum/l1_contracts.d.ts.map +0 -1
- package/dest/api/ethereum/l1_contracts.js +0 -13
- package/dest/api/ethereum/portal_manager.d.ts +0 -136
- package/dest/api/ethereum/portal_manager.d.ts.map +0 -1
- package/dest/api/interfaces/pxe.d.ts +0 -2
- package/dest/api/interfaces/pxe.d.ts.map +0 -1
- package/dest/api/interfaces/pxe.js +0 -1
- package/dest/api/log_id.d.ts +0 -2
- package/dest/api/log_id.d.ts.map +0 -1
- package/dest/api/log_id.js +0 -1
- package/dest/api/tx_hash.d.ts +0 -2
- package/dest/api/tx_hash.d.ts.map +0 -1
- package/dest/api/tx_hash.js +0 -1
- package/dest/contract/deploy_proven_tx.d.ts +0 -21
- package/dest/contract/deploy_proven_tx.d.ts.map +0 -1
- package/dest/contract/deploy_proven_tx.js +0 -19
- package/dest/contract/index.d.ts +0 -45
- package/dest/contract/index.d.ts.map +0 -1
- package/dest/contract/proven_tx.d.ts +0 -17
- package/dest/contract/proven_tx.d.ts.map +0 -1
- package/dest/contract/proven_tx.js +0 -22
- package/dest/deployment/deploy_instance.d.ts +0 -10
- package/dest/deployment/deploy_instance.d.ts.map +0 -1
- package/dest/deployment/deploy_instance.js +0 -14
- package/dest/deployment/index.d.ts +0 -2
- package/dest/deployment/index.d.ts.map +0 -1
- package/dest/deployment/index.js +0 -1
- package/dest/deployment/register_class.d.ts +0 -6
- package/dest/deployment/register_class.d.ts.map +0 -1
- package/dest/deployment/register_class.js +0 -22
- package/dest/entrypoint/default_entrypoint.d.ts +0 -12
- package/dest/entrypoint/default_entrypoint.d.ts.map +0 -1
- package/dest/entrypoint/default_entrypoint.js +0 -28
- package/dest/entrypoint/default_multi_call_entrypoint.d.ts +0 -15
- package/dest/entrypoint/default_multi_call_entrypoint.d.ts.map +0 -1
- package/dest/entrypoint/default_multi_call_entrypoint.js +0 -130
- package/dest/entrypoint/entrypoint.d.ts +0 -35
- package/dest/entrypoint/entrypoint.d.ts.map +0 -1
- package/dest/entrypoint/entrypoint.js +0 -4
- package/dest/entrypoint/payload.d.ts +0 -128
- package/dest/entrypoint/payload.d.ts.map +0 -1
- package/dest/entrypoint/payload.js +0 -143
- package/dest/fee/fee_juice_payment_method.d.ts +0 -14
- package/dest/fee/fee_juice_payment_method.d.ts.map +0 -1
- package/dest/fee/fee_juice_payment_method.js +0 -20
- package/dest/index.d.ts +0 -66
- package/dest/index.d.ts.map +0 -1
- package/dest/index.js +0 -69
- package/dest/rpc_clients/index.d.ts +0 -3
- package/dest/rpc_clients/index.d.ts.map +0 -1
- package/dest/rpc_clients/index.js +0 -2
- package/dest/rpc_clients/node/index.d.ts +0 -12
- package/dest/rpc_clients/node/index.d.ts.map +0 -1
- package/dest/rpc_clients/node/index.js +0 -78
- package/dest/rpc_clients/pxe_client.d.ts +0 -10
- package/dest/rpc_clients/pxe_client.d.ts.map +0 -1
- package/dest/rpc_clients/pxe_client.js +0 -23
- package/dest/utils/aztec_cheatcodes.d.ts +0 -59
- package/dest/utils/aztec_cheatcodes.d.ts.map +0 -1
- package/dest/utils/aztec_cheatcodes.js +0 -62
- package/dest/utils/index.d.ts +0 -8
- package/dest/utils/index.d.ts.map +0 -1
- package/dest/utils/index.js +0 -6
- package/dest/utils/pxe.d.ts +0 -4
- package/dest/utils/pxe.d.ts.map +0 -1
- package/dest/utils/pxe.js +0 -14
- package/dest/wallet/account_wallet.d.ts +0 -76
- package/dest/wallet/account_wallet.d.ts.map +0 -1
- package/dest/wallet/account_wallet.js +0 -231
- package/dest/wallet/account_wallet_with_private_key.d.ts +0 -26
- package/dest/wallet/account_wallet_with_private_key.d.ts.map +0 -1
- package/dest/wallet/base_wallet.d.ts +0 -73
- package/dest/wallet/base_wallet.d.ts.map +0 -1
- package/dest/wallet/base_wallet.js +0 -123
- package/dest/wallet/signerless_wallet.d.ts +0 -25
- package/dest/wallet/signerless_wallet.d.ts.map +0 -1
- package/dest/wallet/signerless_wallet.js +0 -36
- package/src/account/wallet.ts +0 -13
- package/src/account_manager/deploy_account_method.ts +0 -86
- package/src/account_manager/deploy_account_sent_tx.ts +0 -42
- package/src/account_manager/index.ts +0 -229
- package/src/api/cheat_codes.ts +0 -35
- package/src/api/entrypoint.ts +0 -1
- package/src/api/ethereum/anvil_test_watcher.ts +0 -158
- package/src/api/ethereum/chain_monitor.ts +0 -88
- package/src/api/ethereum/cheat_codes.ts +0 -184
- package/src/api/ethereum/index.ts +0 -19
- package/src/api/ethereum/l1_contracts.ts +0 -21
- package/src/api/interfaces/pxe.ts +0 -1
- package/src/api/log_id.ts +0 -1
- package/src/api/tx_hash.ts +0 -1
- package/src/contract/deploy_proven_tx.ts +0 -34
- package/src/contract/proven_tx.ts +0 -42
- package/src/deployment/deploy_instance.ts +0 -31
- package/src/deployment/index.ts +0 -1
- package/src/deployment/register_class.ts +0 -44
- package/src/entrypoint/default_entrypoint.ts +0 -39
- package/src/entrypoint/default_multi_call_entrypoint.ts +0 -93
- package/src/entrypoint/entrypoint.ts +0 -39
- package/src/entrypoint/payload.ts +0 -238
- package/src/fee/fee_juice_payment_method.ts +0 -26
- package/src/index.ts +0 -106
- package/src/rpc_clients/index.ts +0 -2
- package/src/rpc_clients/node/index.ts +0 -77
- package/src/rpc_clients/pxe_client.ts +0 -25
- package/src/utils/aztec_cheatcodes.ts +0 -77
- package/src/utils/index.ts +0 -21
- package/src/utils/pxe.ts +0 -17
- package/src/wallet/account_wallet.ts +0 -242
- package/src/wallet/base_wallet.ts +0 -198
- package/src/wallet/signerless_wallet.ts +0 -52
package/dest/utils/pxe.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { retryUntil } from '@aztec/foundation/retry';
|
|
2
|
-
export const waitForPXE = async (pxe, logger)=>{
|
|
3
|
-
await retryUntil(async ()=>{
|
|
4
|
-
try {
|
|
5
|
-
logger?.verbose('Attempting to contact PXE...');
|
|
6
|
-
await pxe.getNodeInfo();
|
|
7
|
-
logger?.verbose('Contacted PXE');
|
|
8
|
-
return true;
|
|
9
|
-
} catch (error) {
|
|
10
|
-
logger?.verbose('Failed to contact PXE');
|
|
11
|
-
}
|
|
12
|
-
return undefined;
|
|
13
|
-
}, 'RPC Get Node Info');
|
|
14
|
-
};
|
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" resolution-mode="require"/>
|
|
2
|
-
/// <reference types="node" resolution-mode="require"/>
|
|
3
|
-
import { Fr } from '@aztec/foundation/fields';
|
|
4
|
-
import type { AuthWitness } from '@aztec/stdlib/auth-witness';
|
|
5
|
-
import type { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
6
|
-
import type { PXE } from '@aztec/stdlib/interfaces/client';
|
|
7
|
-
import type { TxExecutionRequest } from '@aztec/stdlib/tx';
|
|
8
|
-
import type { AccountInterface } from '../account/interface.js';
|
|
9
|
-
import { ContractFunctionInteraction } from '../contract/contract_function_interaction.js';
|
|
10
|
-
import type { ExecutionRequestInit } from '../entrypoint/entrypoint.js';
|
|
11
|
-
import { type IntentAction, type IntentInnerHash } from '../utils/authwit.js';
|
|
12
|
-
import { BaseWallet } from './base_wallet.js';
|
|
13
|
-
/**
|
|
14
|
-
* A wallet implementation that forwards authentication requests to a provided account.
|
|
15
|
-
*/
|
|
16
|
-
export declare class AccountWallet extends BaseWallet {
|
|
17
|
-
protected account: AccountInterface;
|
|
18
|
-
constructor(pxe: PXE, account: AccountInterface);
|
|
19
|
-
createTxExecutionRequest(exec: ExecutionRequestInit): Promise<TxExecutionRequest>;
|
|
20
|
-
getChainId(): Fr;
|
|
21
|
-
getVersion(): Fr;
|
|
22
|
-
isL1ToL2MessageSynced(l1ToL2Message: Fr): Promise<boolean>;
|
|
23
|
-
/**
|
|
24
|
-
* Computes an authentication witness from either a message hash or an intent.
|
|
25
|
-
*
|
|
26
|
-
* If a message hash is provided, it will create a witness for the hash directly.
|
|
27
|
-
* Otherwise, it will compute the message hash using the intent, along with the
|
|
28
|
-
* chain id and the version values provided by the wallet.
|
|
29
|
-
*
|
|
30
|
-
* @param messageHashOrIntent - The message hash of the intent to approve
|
|
31
|
-
* @returns The authentication witness
|
|
32
|
-
*/
|
|
33
|
-
createAuthWit(messageHashOrIntent: Fr | Buffer | IntentAction | IntentInnerHash): Promise<AuthWitness>;
|
|
34
|
-
/**
|
|
35
|
-
* Returns a function interaction to set a message hash as authorized or revoked in this account.
|
|
36
|
-
*
|
|
37
|
-
* Public calls can then consume this authorization.
|
|
38
|
-
*
|
|
39
|
-
* @param messageHashOrIntent - The message hash or intent to authorize/revoke
|
|
40
|
-
* @param authorized - True to authorize, false to revoke authorization.
|
|
41
|
-
* @returns - A function interaction.
|
|
42
|
-
*/
|
|
43
|
-
setPublicAuthWit(messageHashOrIntent: Fr | Buffer | IntentInnerHash | IntentAction, authorized: boolean): Promise<ContractFunctionInteraction>;
|
|
44
|
-
private getInnerHashAndConsumer;
|
|
45
|
-
/**
|
|
46
|
-
* Returns the message hash for the given intent
|
|
47
|
-
*
|
|
48
|
-
* @param intent - A tuple of (consumer and inner hash) or (caller and action)
|
|
49
|
-
* @returns The message hash
|
|
50
|
-
*/
|
|
51
|
-
private getMessageHash;
|
|
52
|
-
/**
|
|
53
|
-
* Lookup the validity of an authwit in private and public contexts.
|
|
54
|
-
*
|
|
55
|
-
* Uses the chain id and version of the wallet.
|
|
56
|
-
*
|
|
57
|
-
* @param onBehalfOf - The address of the "approver"
|
|
58
|
-
* @param intent - The consumer and inner hash or the caller and action to lookup
|
|
59
|
-
*
|
|
60
|
-
* @returns - A struct containing the validity of the authwit in private and public contexts.
|
|
61
|
-
*/
|
|
62
|
-
lookupValidity(onBehalfOf: AztecAddress, intent: IntentInnerHash | IntentAction): Promise<{
|
|
63
|
-
/** boolean flag indicating if the authwit is valid in private context */
|
|
64
|
-
isValidInPrivate: boolean;
|
|
65
|
-
/** boolean flag indicating if the authwit is valid in public context */
|
|
66
|
-
isValidInPublic: boolean;
|
|
67
|
-
}>;
|
|
68
|
-
/** Returns the complete address of the account that implements this wallet. */
|
|
69
|
-
getCompleteAddress(): import("@aztec/stdlib/contract").CompleteAddress;
|
|
70
|
-
/** Returns the address of the account that implements this wallet. */
|
|
71
|
-
getAddress(): AztecAddress;
|
|
72
|
-
private getSetAuthorizedAbi;
|
|
73
|
-
private getLookupValidityAbi;
|
|
74
|
-
private getIsConsumableAbi;
|
|
75
|
-
}
|
|
76
|
-
//# sourceMappingURL=account_wallet.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"account_wallet.d.ts","sourceRoot":"","sources":["../../src/wallet/account_wallet.ts"],"names":[],"mappings":";;AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,0BAA0B,CAAC;AAG9C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,iCAAiC,CAAC;AAC3D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAE3D,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,2BAA2B,EAAE,MAAM,8CAA8C,CAAC;AAC3F,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AACxE,OAAO,EACL,KAAK,YAAY,EACjB,KAAK,eAAe,EAGrB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAE9C;;GAEG;AACH,qBAAa,aAAc,SAAQ,UAAU;IACrB,SAAS,CAAC,OAAO,EAAE,gBAAgB;gBAA7C,GAAG,EAAE,GAAG,EAAY,OAAO,EAAE,gBAAgB;IAIzD,wBAAwB,CAAC,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,kBAAkB,CAAC;IAIjF,UAAU,IAAI,EAAE;IAIhB,UAAU,IAAI,EAAE;IAIP,qBAAqB,CAAC,aAAa,EAAE,EAAE,GAAG,OAAO,CAAC,OAAO,CAAC;IAInE;;;;;;;;;OASG;IACG,aAAa,CAAC,mBAAmB,EAAE,EAAE,GAAG,MAAM,GAAG,YAAY,GAAG,eAAe,GAAG,OAAO,CAAC,WAAW,CAAC;IAe5G;;;;;;;;OAQG;IACU,gBAAgB,CAC3B,mBAAmB,EAAE,EAAE,GAAG,MAAM,GAAG,eAAe,GAAG,YAAY,EACjE,UAAU,EAAE,OAAO,GAClB,OAAO,CAAC,2BAA2B,CAAC;YAgBzB,uBAAuB;IAmBrC;;;;;OAKG;IACH,OAAO,CAAC,cAAc;IAMtB;;;;;;;;;OASG;IACG,cAAc,CAClB,UAAU,EAAE,YAAY,EACxB,MAAM,EAAE,eAAe,GAAG,YAAY,GACrC,OAAO,CAAC;QACT,yEAAyE;QACzE,gBAAgB,EAAE,OAAO,CAAC;QAC1B,wEAAwE;QACxE,eAAe,EAAE,OAAO,CAAC;KAC1B,CAAC;IA0BF,+EAA+E;IACxE,kBAAkB;IAIzB,sEAAsE;IACtD,UAAU;IAI1B,OAAO,CAAC,mBAAmB;IAwB3B,OAAO,CAAC,oBAAoB;IAa5B,OAAO,CAAC,kBAAkB;CAuB3B"}
|
|
@@ -1,231 +0,0 @@
|
|
|
1
|
-
import { Fr } from '@aztec/foundation/fields';
|
|
2
|
-
import { ProtocolContractAddress } from '@aztec/protocol-contracts';
|
|
3
|
-
import { FunctionType } from '@aztec/stdlib/abi';
|
|
4
|
-
import { ContractFunctionInteraction } from '../contract/contract_function_interaction.js';
|
|
5
|
-
import { computeAuthWitMessageHash, computeInnerAuthWitHashFromAction } from '../utils/authwit.js';
|
|
6
|
-
import { BaseWallet } from './base_wallet.js';
|
|
7
|
-
/**
|
|
8
|
-
* A wallet implementation that forwards authentication requests to a provided account.
|
|
9
|
-
*/ export class AccountWallet extends BaseWallet {
|
|
10
|
-
account;
|
|
11
|
-
constructor(pxe, account){
|
|
12
|
-
super(pxe, [
|
|
13
|
-
account.getAddress()
|
|
14
|
-
]), this.account = account;
|
|
15
|
-
}
|
|
16
|
-
createTxExecutionRequest(exec) {
|
|
17
|
-
return this.account.createTxExecutionRequest(exec);
|
|
18
|
-
}
|
|
19
|
-
getChainId() {
|
|
20
|
-
return this.account.getChainId();
|
|
21
|
-
}
|
|
22
|
-
getVersion() {
|
|
23
|
-
return this.account.getVersion();
|
|
24
|
-
}
|
|
25
|
-
isL1ToL2MessageSynced(l1ToL2Message) {
|
|
26
|
-
return this.pxe.isL1ToL2MessageSynced(l1ToL2Message);
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* Computes an authentication witness from either a message hash or an intent.
|
|
30
|
-
*
|
|
31
|
-
* If a message hash is provided, it will create a witness for the hash directly.
|
|
32
|
-
* Otherwise, it will compute the message hash using the intent, along with the
|
|
33
|
-
* chain id and the version values provided by the wallet.
|
|
34
|
-
*
|
|
35
|
-
* @param messageHashOrIntent - The message hash of the intent to approve
|
|
36
|
-
* @returns The authentication witness
|
|
37
|
-
*/ async createAuthWit(messageHashOrIntent) {
|
|
38
|
-
let messageHash;
|
|
39
|
-
if (Buffer.isBuffer(messageHashOrIntent)) {
|
|
40
|
-
messageHash = Fr.fromBuffer(messageHashOrIntent);
|
|
41
|
-
} else if (messageHashOrIntent instanceof Fr) {
|
|
42
|
-
messageHash = messageHashOrIntent;
|
|
43
|
-
} else {
|
|
44
|
-
messageHash = await this.getMessageHash(messageHashOrIntent);
|
|
45
|
-
}
|
|
46
|
-
const witness = await this.account.createAuthWit(messageHash);
|
|
47
|
-
await this.pxe.addAuthWitness(witness);
|
|
48
|
-
return witness;
|
|
49
|
-
}
|
|
50
|
-
/**
|
|
51
|
-
* Returns a function interaction to set a message hash as authorized or revoked in this account.
|
|
52
|
-
*
|
|
53
|
-
* Public calls can then consume this authorization.
|
|
54
|
-
*
|
|
55
|
-
* @param messageHashOrIntent - The message hash or intent to authorize/revoke
|
|
56
|
-
* @param authorized - True to authorize, false to revoke authorization.
|
|
57
|
-
* @returns - A function interaction.
|
|
58
|
-
*/ async setPublicAuthWit(messageHashOrIntent, authorized) {
|
|
59
|
-
let messageHash;
|
|
60
|
-
if (Buffer.isBuffer(messageHashOrIntent)) {
|
|
61
|
-
messageHash = Fr.fromBuffer(messageHashOrIntent);
|
|
62
|
-
} else if (messageHashOrIntent instanceof Fr) {
|
|
63
|
-
messageHash = messageHashOrIntent;
|
|
64
|
-
} else {
|
|
65
|
-
messageHash = await this.getMessageHash(messageHashOrIntent);
|
|
66
|
-
}
|
|
67
|
-
return new ContractFunctionInteraction(this, ProtocolContractAddress.AuthRegistry, this.getSetAuthorizedAbi(), [
|
|
68
|
-
messageHash,
|
|
69
|
-
authorized
|
|
70
|
-
]);
|
|
71
|
-
}
|
|
72
|
-
async getInnerHashAndConsumer(intent) {
|
|
73
|
-
if ('caller' in intent && 'action' in intent) {
|
|
74
|
-
const action = intent.action instanceof ContractFunctionInteraction ? await intent.action.request() : intent.action;
|
|
75
|
-
return {
|
|
76
|
-
innerHash: await computeInnerAuthWitHashFromAction(intent.caller, action),
|
|
77
|
-
consumer: action.to
|
|
78
|
-
};
|
|
79
|
-
} else if (Buffer.isBuffer(intent.innerHash)) {
|
|
80
|
-
return {
|
|
81
|
-
innerHash: Fr.fromBuffer(intent.innerHash),
|
|
82
|
-
consumer: intent.consumer
|
|
83
|
-
};
|
|
84
|
-
}
|
|
85
|
-
return {
|
|
86
|
-
innerHash: intent.innerHash,
|
|
87
|
-
consumer: intent.consumer
|
|
88
|
-
};
|
|
89
|
-
}
|
|
90
|
-
/**
|
|
91
|
-
* Returns the message hash for the given intent
|
|
92
|
-
*
|
|
93
|
-
* @param intent - A tuple of (consumer and inner hash) or (caller and action)
|
|
94
|
-
* @returns The message hash
|
|
95
|
-
*/ getMessageHash(intent) {
|
|
96
|
-
const chainId = this.getChainId();
|
|
97
|
-
const version = this.getVersion();
|
|
98
|
-
return computeAuthWitMessageHash(intent, {
|
|
99
|
-
chainId,
|
|
100
|
-
version
|
|
101
|
-
});
|
|
102
|
-
}
|
|
103
|
-
/**
|
|
104
|
-
* Lookup the validity of an authwit in private and public contexts.
|
|
105
|
-
*
|
|
106
|
-
* Uses the chain id and version of the wallet.
|
|
107
|
-
*
|
|
108
|
-
* @param onBehalfOf - The address of the "approver"
|
|
109
|
-
* @param intent - The consumer and inner hash or the caller and action to lookup
|
|
110
|
-
*
|
|
111
|
-
* @returns - A struct containing the validity of the authwit in private and public contexts.
|
|
112
|
-
*/ async lookupValidity(onBehalfOf, intent) {
|
|
113
|
-
const { innerHash, consumer } = await this.getInnerHashAndConsumer(intent);
|
|
114
|
-
const messageHash = await this.getMessageHash(intent);
|
|
115
|
-
const results = {
|
|
116
|
-
isValidInPrivate: false,
|
|
117
|
-
isValidInPublic: false
|
|
118
|
-
};
|
|
119
|
-
// Check private
|
|
120
|
-
const witness = await this.getAuthWitness(messageHash);
|
|
121
|
-
if (witness !== undefined) {
|
|
122
|
-
results.isValidInPrivate = await new ContractFunctionInteraction(this, onBehalfOf, this.getLookupValidityAbi(), [
|
|
123
|
-
consumer,
|
|
124
|
-
innerHash
|
|
125
|
-
]).simulate();
|
|
126
|
-
}
|
|
127
|
-
// check public
|
|
128
|
-
results.isValidInPublic = await new ContractFunctionInteraction(this, ProtocolContractAddress.AuthRegistry, this.getIsConsumableAbi(), [
|
|
129
|
-
onBehalfOf,
|
|
130
|
-
messageHash
|
|
131
|
-
]).simulate();
|
|
132
|
-
return results;
|
|
133
|
-
}
|
|
134
|
-
/** Returns the complete address of the account that implements this wallet. */ getCompleteAddress() {
|
|
135
|
-
return this.account.getCompleteAddress();
|
|
136
|
-
}
|
|
137
|
-
/** Returns the address of the account that implements this wallet. */ getAddress() {
|
|
138
|
-
return this.getCompleteAddress().address;
|
|
139
|
-
}
|
|
140
|
-
getSetAuthorizedAbi() {
|
|
141
|
-
return {
|
|
142
|
-
name: 'set_authorized',
|
|
143
|
-
isInitializer: false,
|
|
144
|
-
functionType: FunctionType.PUBLIC,
|
|
145
|
-
isInternal: true,
|
|
146
|
-
isStatic: false,
|
|
147
|
-
parameters: [
|
|
148
|
-
{
|
|
149
|
-
name: 'message_hash',
|
|
150
|
-
type: {
|
|
151
|
-
kind: 'field'
|
|
152
|
-
},
|
|
153
|
-
visibility: 'private'
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
name: 'authorize',
|
|
157
|
-
type: {
|
|
158
|
-
kind: 'boolean'
|
|
159
|
-
},
|
|
160
|
-
visibility: 'private'
|
|
161
|
-
}
|
|
162
|
-
],
|
|
163
|
-
returnTypes: [],
|
|
164
|
-
errorTypes: {}
|
|
165
|
-
};
|
|
166
|
-
}
|
|
167
|
-
getLookupValidityAbi() {
|
|
168
|
-
return {
|
|
169
|
-
name: 'lookup_validity',
|
|
170
|
-
isInitializer: false,
|
|
171
|
-
functionType: FunctionType.UNCONSTRAINED,
|
|
172
|
-
isInternal: false,
|
|
173
|
-
isStatic: false,
|
|
174
|
-
parameters: [
|
|
175
|
-
{
|
|
176
|
-
name: 'message_hash',
|
|
177
|
-
type: {
|
|
178
|
-
kind: 'field'
|
|
179
|
-
},
|
|
180
|
-
visibility: 'private'
|
|
181
|
-
}
|
|
182
|
-
],
|
|
183
|
-
returnTypes: [
|
|
184
|
-
{
|
|
185
|
-
kind: 'boolean'
|
|
186
|
-
}
|
|
187
|
-
],
|
|
188
|
-
errorTypes: {}
|
|
189
|
-
};
|
|
190
|
-
}
|
|
191
|
-
getIsConsumableAbi() {
|
|
192
|
-
return {
|
|
193
|
-
name: 'unconstrained_is_consumable',
|
|
194
|
-
isInitializer: false,
|
|
195
|
-
functionType: FunctionType.UNCONSTRAINED,
|
|
196
|
-
isInternal: false,
|
|
197
|
-
isStatic: false,
|
|
198
|
-
parameters: [
|
|
199
|
-
{
|
|
200
|
-
name: 'address',
|
|
201
|
-
type: {
|
|
202
|
-
fields: [
|
|
203
|
-
{
|
|
204
|
-
name: 'inner',
|
|
205
|
-
type: {
|
|
206
|
-
kind: 'field'
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
],
|
|
210
|
-
kind: 'struct',
|
|
211
|
-
path: 'authwit::aztec::protocol_types::address::aztec_address::AztecAddress'
|
|
212
|
-
},
|
|
213
|
-
visibility: 'private'
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
name: 'message_hash',
|
|
217
|
-
type: {
|
|
218
|
-
kind: 'field'
|
|
219
|
-
},
|
|
220
|
-
visibility: 'private'
|
|
221
|
-
}
|
|
222
|
-
],
|
|
223
|
-
returnTypes: [
|
|
224
|
-
{
|
|
225
|
-
kind: 'boolean'
|
|
226
|
-
}
|
|
227
|
-
],
|
|
228
|
-
errorTypes: {}
|
|
229
|
-
};
|
|
230
|
-
}
|
|
231
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import type { Fr } from '@aztec/foundation/fields';
|
|
2
|
-
import type { PXE } from '@aztec/stdlib/interfaces/client';
|
|
3
|
-
import type { Salt } from '../account/index.js';
|
|
4
|
-
import type { AccountInterface } from '../account/interface.js';
|
|
5
|
-
import { AccountWallet } from './account_wallet.js';
|
|
6
|
-
/**
|
|
7
|
-
* Extends {@link AccountWallet} with the encryption private key. Not required for
|
|
8
|
-
* implementing the wallet interface but useful for testing purposes or exporting
|
|
9
|
-
* an account to another pxe.
|
|
10
|
-
*/
|
|
11
|
-
export declare class AccountWalletWithSecretKey extends AccountWallet {
|
|
12
|
-
private secretKey;
|
|
13
|
-
/** Deployment salt for this account contract. */
|
|
14
|
-
readonly salt: Salt;
|
|
15
|
-
constructor(pxe: PXE, account: AccountInterface, secretKey: Fr,
|
|
16
|
-
/** Deployment salt for this account contract. */
|
|
17
|
-
salt: Salt);
|
|
18
|
-
/** Returns the encryption private key associated with this account. */
|
|
19
|
-
getSecretKey(): Fr;
|
|
20
|
-
/** Returns the encryption secret, the secret of the encryption point—the point that others use to encrypt messages to this account
|
|
21
|
-
* note - this ensures that the address secret always corresponds to an address point with y being positive
|
|
22
|
-
* dev - this is also referred to as the address secret, which decrypts payloads encrypted to an address point
|
|
23
|
-
*/
|
|
24
|
-
getEncryptionSecret(): Promise<import("@aztec/foundation/fields").Fq>;
|
|
25
|
-
}
|
|
26
|
-
//# sourceMappingURL=account_wallet_with_private_key.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"account_wallet_with_private_key.d.ts","sourceRoot":"","sources":["../../src/wallet/account_wallet_with_private_key.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,0BAA0B,CAAC;AACnD,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,iCAAiC,CAAC;AAG3D,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAC;AAChD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEpD;;;;GAIG;AACH,qBAAa,0BAA2B,SAAQ,aAAa;IAIzD,OAAO,CAAC,SAAS;IACjB,iDAAiD;aACjC,IAAI,EAAE,IAAI;gBAJ1B,GAAG,EAAE,GAAG,EACR,OAAO,EAAE,gBAAgB,EACjB,SAAS,EAAE,EAAE;IACrB,iDAAiD;IACjC,IAAI,EAAE,IAAI;IAK5B,uEAAuE;IAChE,YAAY;IAInB;;;OAGG;IACU,mBAAmB;CAMjC"}
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" resolution-mode="require"/>
|
|
2
|
-
/// <reference types="node" resolution-mode="require"/>
|
|
3
|
-
import type { L1_TO_L2_MSG_TREE_HEIGHT } from '@aztec/constants';
|
|
4
|
-
import type { Fr, Point } from '@aztec/foundation/fields';
|
|
5
|
-
import type { SiblingPath } from '@aztec/foundation/trees';
|
|
6
|
-
import type { AbiDecoded, ContractArtifact } from '@aztec/stdlib/abi';
|
|
7
|
-
import type { AuthWitness } from '@aztec/stdlib/auth-witness';
|
|
8
|
-
import type { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
9
|
-
import type { L2Block } from '@aztec/stdlib/block';
|
|
10
|
-
import type { CompleteAddress, ContractInstanceWithAddress, NodeInfo, PartialAddress } from '@aztec/stdlib/contract';
|
|
11
|
-
import type { GasFees } from '@aztec/stdlib/gas';
|
|
12
|
-
import type { ContractClassMetadata, ContractMetadata, EventMetadataDefinition, GetContractClassLogsResponse, GetPublicLogsResponse, PXE, PXEInfo } from '@aztec/stdlib/interfaces/client';
|
|
13
|
-
import type { LogFilter } from '@aztec/stdlib/logs';
|
|
14
|
-
import type { NotesFilter, UniqueNote } from '@aztec/stdlib/note';
|
|
15
|
-
import type { PrivateExecutionResult, Tx, TxExecutionRequest, TxHash, TxProvingResult, TxReceipt, TxSimulationResult } from '@aztec/stdlib/tx';
|
|
16
|
-
import type { Wallet } from '../account/wallet.js';
|
|
17
|
-
import type { ExecutionRequestInit } from '../entrypoint/entrypoint.js';
|
|
18
|
-
import type { IntentAction, IntentInnerHash } from '../utils/authwit.js';
|
|
19
|
-
/**
|
|
20
|
-
* A base class for Wallet implementations
|
|
21
|
-
*/
|
|
22
|
-
export declare abstract class BaseWallet implements Wallet {
|
|
23
|
-
protected readonly pxe: PXE;
|
|
24
|
-
private scopes?;
|
|
25
|
-
constructor(pxe: PXE, scopes?: AztecAddress[] | undefined);
|
|
26
|
-
abstract isL1ToL2MessageSynced(l1ToL2Message: Fr): Promise<boolean>;
|
|
27
|
-
abstract getCompleteAddress(): CompleteAddress;
|
|
28
|
-
abstract getChainId(): Fr;
|
|
29
|
-
abstract getVersion(): Fr;
|
|
30
|
-
abstract createTxExecutionRequest(exec: ExecutionRequestInit): Promise<TxExecutionRequest>;
|
|
31
|
-
abstract createAuthWit(intent: Fr | Buffer | IntentInnerHash | IntentAction): Promise<AuthWitness>;
|
|
32
|
-
setScopes(scopes: AztecAddress[]): void;
|
|
33
|
-
getScopes(): AztecAddress[] | undefined;
|
|
34
|
-
getAddress(): AztecAddress;
|
|
35
|
-
storeCapsule(contract: AztecAddress, storageSlot: Fr, capsule: Fr[]): Promise<void>;
|
|
36
|
-
registerAccount(secretKey: Fr, partialAddress: PartialAddress): Promise<CompleteAddress>;
|
|
37
|
-
getRegisteredAccounts(): Promise<CompleteAddress[]>;
|
|
38
|
-
registerSender(address: AztecAddress): Promise<AztecAddress>;
|
|
39
|
-
getSenders(): Promise<AztecAddress[]>;
|
|
40
|
-
removeSender(address: AztecAddress): Promise<void>;
|
|
41
|
-
registerContract(contract: {
|
|
42
|
-
/** Instance */ instance: ContractInstanceWithAddress;
|
|
43
|
-
/** Associated artifact */ artifact?: ContractArtifact;
|
|
44
|
-
}): Promise<void>;
|
|
45
|
-
registerContractClass(artifact: ContractArtifact): Promise<void>;
|
|
46
|
-
updateContract(contractAddress: AztecAddress, artifact: ContractArtifact): Promise<void>;
|
|
47
|
-
getContracts(): Promise<AztecAddress[]>;
|
|
48
|
-
proveTx(txRequest: TxExecutionRequest, privateExecutionResult: PrivateExecutionResult): Promise<TxProvingResult>;
|
|
49
|
-
simulateTx(txRequest: TxExecutionRequest, simulatePublic: boolean, msgSender?: AztecAddress, skipTxValidation?: boolean, skipFeeEnforcement?: boolean, profile?: boolean): Promise<TxSimulationResult>;
|
|
50
|
-
sendTx(tx: Tx): Promise<TxHash>;
|
|
51
|
-
getTxEffect(txHash: TxHash): Promise<import("@aztec/stdlib/block").InBlock<import("@aztec/stdlib/tx").TxEffect> | undefined>;
|
|
52
|
-
getTxReceipt(txHash: TxHash): Promise<TxReceipt>;
|
|
53
|
-
getNotes(filter: NotesFilter): Promise<UniqueNote[]>;
|
|
54
|
-
getPublicStorageAt(contract: AztecAddress, storageSlot: Fr): Promise<any>;
|
|
55
|
-
getBlock(number: number): Promise<L2Block | undefined>;
|
|
56
|
-
getCurrentBaseFees(): Promise<GasFees>;
|
|
57
|
-
simulateUnconstrained(functionName: string, args: any[], to: AztecAddress, from?: AztecAddress | undefined): Promise<AbiDecoded>;
|
|
58
|
-
getPublicLogs(filter: LogFilter): Promise<GetPublicLogsResponse>;
|
|
59
|
-
getContractClassLogs(filter: LogFilter): Promise<GetContractClassLogsResponse>;
|
|
60
|
-
getBlockNumber(): Promise<number>;
|
|
61
|
-
getProvenBlockNumber(): Promise<number>;
|
|
62
|
-
getNodeInfo(): Promise<NodeInfo>;
|
|
63
|
-
addAuthWitness(authWitness: AuthWitness): Promise<void>;
|
|
64
|
-
getAuthWitness(messageHash: Fr): Promise<Fr[] | undefined>;
|
|
65
|
-
getPXEInfo(): Promise<PXEInfo>;
|
|
66
|
-
getContractClassMetadata(id: Fr, includeArtifact?: boolean): Promise<ContractClassMetadata>;
|
|
67
|
-
getContractMetadata(address: AztecAddress): Promise<ContractMetadata>;
|
|
68
|
-
getPrivateEvents<T>(event: EventMetadataDefinition, from: number, limit: number, vpks?: Point[]): Promise<T[]>;
|
|
69
|
-
getPublicEvents<T>(event: EventMetadataDefinition, from: number, limit: number): Promise<T[]>;
|
|
70
|
-
getL1ToL2MembershipWitness(contractAddress: AztecAddress, messageHash: Fr, secret: Fr): Promise<[bigint, SiblingPath<typeof L1_TO_L2_MSG_TREE_HEIGHT>]>;
|
|
71
|
-
getL2ToL1MembershipWitness(blockNumber: number, l2Tol1Message: Fr): Promise<[bigint, SiblingPath<number>]>;
|
|
72
|
-
}
|
|
73
|
-
//# sourceMappingURL=base_wallet.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"base_wallet.d.ts","sourceRoot":"","sources":["../../src/wallet/base_wallet.ts"],"names":[],"mappings":";;AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,kBAAkB,CAAC;AACjE,OAAO,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AACtE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAChE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,KAAK,EAAE,eAAe,EAAE,2BAA2B,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACrH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,KAAK,EACV,qBAAqB,EACrB,gBAAgB,EAChB,uBAAuB,EACvB,4BAA4B,EAC5B,qBAAqB,EACrB,GAAG,EACH,OAAO,EACR,MAAM,iCAAiC,CAAC;AACzC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAClE,OAAO,KAAK,EACV,sBAAsB,EACtB,EAAE,EACF,kBAAkB,EAClB,MAAM,EACN,eAAe,EACf,SAAS,EACT,kBAAkB,EACnB,MAAM,kBAAkB,CAAC;AAE1B,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AACxE,OAAO,KAAK,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAEzE;;GAEG;AACH,8BAAsB,UAAW,YAAW,MAAM;IACpC,SAAS,CAAC,QAAQ,CAAC,GAAG,EAAE,GAAG;IAAE,OAAO,CAAC,MAAM,CAAC;gBAAzB,GAAG,EAAE,GAAG,EAAU,MAAM,CAAC,4BAAgB;IAExE,QAAQ,CAAC,qBAAqB,CAAC,aAAa,EAAE,EAAE,GAAG,OAAO,CAAC,OAAO,CAAC;IAEnE,QAAQ,CAAC,kBAAkB,IAAI,eAAe;IAE9C,QAAQ,CAAC,UAAU,IAAI,EAAE;IAEzB,QAAQ,CAAC,UAAU,IAAI,EAAE;IAEzB,QAAQ,CAAC,wBAAwB,CAAC,IAAI,EAAE,oBAAoB,GAAG,OAAO,CAAC,kBAAkB,CAAC;IAE1F,QAAQ,CAAC,aAAa,CAAC,MAAM,EAAE,EAAE,GAAG,MAAM,GAAG,eAAe,GAAG,YAAY,GAAG,OAAO,CAAC,WAAW,CAAC;IAElG,SAAS,CAAC,MAAM,EAAE,YAAY,EAAE;IAIhC,SAAS;IAIT,UAAU;IAGV,YAAY,CAAC,QAAQ,EAAE,YAAY,EAAE,WAAW,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC;IAGnF,eAAe,CAAC,SAAS,EAAE,EAAE,EAAE,cAAc,EAAE,cAAc,GAAG,OAAO,CAAC,eAAe,CAAC;IAGxF,qBAAqB,IAAI,OAAO,CAAC,eAAe,EAAE,CAAC;IAGnD,cAAc,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,YAAY,CAAC;IAG5D,UAAU,IAAI,OAAO,CAAC,YAAY,EAAE,CAAC;IAG/B,YAAY,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC;IAGxD,gBAAgB,CAAC,QAAQ,EAAE;QACzB,eAAe,CAAC,QAAQ,EAAE,2BAA2B,CAAC;QACtD,0BAA0B,CAAC,QAAQ,CAAC,EAAE,gBAAgB,CAAC;KACxD,GAAG,OAAO,CAAC,IAAI,CAAC;IAGjB,qBAAqB,CAAC,QAAQ,EAAE,gBAAgB,GAAG,OAAO,CAAC,IAAI,CAAC;IAGhE,cAAc,CAAC,eAAe,EAAE,YAAY,EAAE,QAAQ,EAAE,gBAAgB,GAAG,OAAO,CAAC,IAAI,CAAC;IAGxF,YAAY,IAAI,OAAO,CAAC,YAAY,EAAE,CAAC;IAGvC,OAAO,CAAC,SAAS,EAAE,kBAAkB,EAAE,sBAAsB,EAAE,sBAAsB,GAAG,OAAO,CAAC,eAAe,CAAC;IAGhH,UAAU,CACR,SAAS,EAAE,kBAAkB,EAC7B,cAAc,EAAE,OAAO,EACvB,SAAS,CAAC,EAAE,YAAY,EACxB,gBAAgB,CAAC,EAAE,OAAO,EAC1B,kBAAkB,CAAC,EAAE,OAAO,EAC5B,OAAO,CAAC,EAAE,OAAO,GAChB,OAAO,CAAC,kBAAkB,CAAC;IAW9B,MAAM,CAAC,EAAE,EAAE,EAAE,GAAG,OAAO,CAAC,MAAM,CAAC;IAG/B,WAAW,CAAC,MAAM,EAAE,MAAM;IAG1B,YAAY,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC;IAGhD,QAAQ,CAAC,MAAM,EAAE,WAAW,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;IAGpD,kBAAkB,CAAC,QAAQ,EAAE,YAAY,EAAE,WAAW,EAAE,EAAE,GAAG,OAAO,CAAC,GAAG,CAAC;IAGzE,QAAQ,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,GAAG,SAAS,CAAC;IAGtD,kBAAkB,IAAI,OAAO,CAAC,OAAO,CAAC;IAGtC,qBAAqB,CACnB,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE,GAAG,EAAE,EACX,EAAE,EAAE,YAAY,EAChB,IAAI,CAAC,EAAE,YAAY,GAAG,SAAS,GAC9B,OAAO,CAAC,UAAU,CAAC;IAGtB,aAAa,CAAC,MAAM,EAAE,SAAS,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAGhE,oBAAoB,CAAC,MAAM,EAAE,SAAS,GAAG,OAAO,CAAC,4BAA4B,CAAC;IAG9E,cAAc,IAAI,OAAO,CAAC,MAAM,CAAC;IAGjC,oBAAoB,IAAI,OAAO,CAAC,MAAM,CAAC;IAGvC,WAAW,IAAI,OAAO,CAAC,QAAQ,CAAC;IAGhC,cAAc,CAAC,WAAW,EAAE,WAAW;IAGvC,cAAc,CAAC,WAAW,EAAE,EAAE;IAG9B,UAAU,IAAI,OAAO,CAAC,OAAO,CAAC;IAG9B,wBAAwB,CAAC,EAAE,EAAE,EAAE,EAAE,eAAe,GAAE,OAAe,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAGlG,mBAAmB,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAGrE,gBAAgB,CAAC,CAAC,EAChB,KAAK,EAAE,uBAAuB,EAC9B,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,MAAM,EACb,IAAI,GAAE,KAAK,EAA0E,GACpF,OAAO,CAAC,CAAC,EAAE,CAAC;IAGf,eAAe,CAAC,CAAC,EAAE,KAAK,EAAE,uBAAuB,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,EAAE,CAAC;IAGtF,0BAA0B,CAC/B,eAAe,EAAE,YAAY,EAC7B,WAAW,EAAE,EAAE,EACf,MAAM,EAAE,EAAE,GACT,OAAO,CAAC,CAAC,MAAM,EAAE,WAAW,CAAC,OAAO,wBAAwB,CAAC,CAAC,CAAC;IAGlE,0BAA0B,CAAC,WAAW,EAAE,MAAM,EAAE,aAAa,EAAE,EAAE,GAAG,OAAO,CAAC,CAAC,MAAM,EAAE,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC;CAG3G"}
|
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* A base class for Wallet implementations
|
|
3
|
-
*/ export class BaseWallet {
|
|
4
|
-
pxe;
|
|
5
|
-
scopes;
|
|
6
|
-
constructor(pxe, scopes){
|
|
7
|
-
this.pxe = pxe;
|
|
8
|
-
this.scopes = scopes;
|
|
9
|
-
}
|
|
10
|
-
setScopes(scopes) {
|
|
11
|
-
this.scopes = scopes;
|
|
12
|
-
}
|
|
13
|
-
getScopes() {
|
|
14
|
-
return this.scopes;
|
|
15
|
-
}
|
|
16
|
-
getAddress() {
|
|
17
|
-
return this.getCompleteAddress().address;
|
|
18
|
-
}
|
|
19
|
-
storeCapsule(contract, storageSlot, capsule) {
|
|
20
|
-
return this.pxe.storeCapsule(contract, storageSlot, capsule);
|
|
21
|
-
}
|
|
22
|
-
registerAccount(secretKey, partialAddress) {
|
|
23
|
-
return this.pxe.registerAccount(secretKey, partialAddress);
|
|
24
|
-
}
|
|
25
|
-
getRegisteredAccounts() {
|
|
26
|
-
return this.pxe.getRegisteredAccounts();
|
|
27
|
-
}
|
|
28
|
-
registerSender(address) {
|
|
29
|
-
return this.pxe.registerSender(address);
|
|
30
|
-
}
|
|
31
|
-
getSenders() {
|
|
32
|
-
return this.pxe.getSenders();
|
|
33
|
-
}
|
|
34
|
-
async removeSender(address) {
|
|
35
|
-
await this.pxe.removeSender(address);
|
|
36
|
-
}
|
|
37
|
-
registerContract(contract) {
|
|
38
|
-
return this.pxe.registerContract(contract);
|
|
39
|
-
}
|
|
40
|
-
registerContractClass(artifact) {
|
|
41
|
-
return this.pxe.registerContractClass(artifact);
|
|
42
|
-
}
|
|
43
|
-
updateContract(contractAddress, artifact) {
|
|
44
|
-
return this.pxe.updateContract(contractAddress, artifact);
|
|
45
|
-
}
|
|
46
|
-
getContracts() {
|
|
47
|
-
return this.pxe.getContracts();
|
|
48
|
-
}
|
|
49
|
-
proveTx(txRequest, privateExecutionResult) {
|
|
50
|
-
return this.pxe.proveTx(txRequest, privateExecutionResult);
|
|
51
|
-
}
|
|
52
|
-
simulateTx(txRequest, simulatePublic, msgSender, skipTxValidation, skipFeeEnforcement, profile) {
|
|
53
|
-
return this.pxe.simulateTx(txRequest, simulatePublic, msgSender, skipTxValidation, skipFeeEnforcement, profile, this.scopes);
|
|
54
|
-
}
|
|
55
|
-
sendTx(tx) {
|
|
56
|
-
return this.pxe.sendTx(tx);
|
|
57
|
-
}
|
|
58
|
-
getTxEffect(txHash) {
|
|
59
|
-
return this.pxe.getTxEffect(txHash);
|
|
60
|
-
}
|
|
61
|
-
getTxReceipt(txHash) {
|
|
62
|
-
return this.pxe.getTxReceipt(txHash);
|
|
63
|
-
}
|
|
64
|
-
getNotes(filter) {
|
|
65
|
-
return this.pxe.getNotes(filter);
|
|
66
|
-
}
|
|
67
|
-
getPublicStorageAt(contract, storageSlot) {
|
|
68
|
-
return this.pxe.getPublicStorageAt(contract, storageSlot);
|
|
69
|
-
}
|
|
70
|
-
getBlock(number) {
|
|
71
|
-
return this.pxe.getBlock(number);
|
|
72
|
-
}
|
|
73
|
-
getCurrentBaseFees() {
|
|
74
|
-
return this.pxe.getCurrentBaseFees();
|
|
75
|
-
}
|
|
76
|
-
simulateUnconstrained(functionName, args, to, from) {
|
|
77
|
-
return this.pxe.simulateUnconstrained(functionName, args, to, from);
|
|
78
|
-
}
|
|
79
|
-
getPublicLogs(filter) {
|
|
80
|
-
return this.pxe.getPublicLogs(filter);
|
|
81
|
-
}
|
|
82
|
-
getContractClassLogs(filter) {
|
|
83
|
-
return this.pxe.getContractClassLogs(filter);
|
|
84
|
-
}
|
|
85
|
-
getBlockNumber() {
|
|
86
|
-
return this.pxe.getBlockNumber();
|
|
87
|
-
}
|
|
88
|
-
getProvenBlockNumber() {
|
|
89
|
-
return this.pxe.getProvenBlockNumber();
|
|
90
|
-
}
|
|
91
|
-
getNodeInfo() {
|
|
92
|
-
return this.pxe.getNodeInfo();
|
|
93
|
-
}
|
|
94
|
-
addAuthWitness(authWitness) {
|
|
95
|
-
return this.pxe.addAuthWitness(authWitness);
|
|
96
|
-
}
|
|
97
|
-
getAuthWitness(messageHash) {
|
|
98
|
-
return this.pxe.getAuthWitness(messageHash);
|
|
99
|
-
}
|
|
100
|
-
getPXEInfo() {
|
|
101
|
-
return this.pxe.getPXEInfo();
|
|
102
|
-
}
|
|
103
|
-
getContractClassMetadata(id, includeArtifact = false) {
|
|
104
|
-
return this.pxe.getContractClassMetadata(id, includeArtifact);
|
|
105
|
-
}
|
|
106
|
-
getContractMetadata(address) {
|
|
107
|
-
return this.pxe.getContractMetadata(address);
|
|
108
|
-
}
|
|
109
|
-
getPrivateEvents(event, from, limit, vpks = [
|
|
110
|
-
this.getCompleteAddress().publicKeys.masterIncomingViewingPublicKey
|
|
111
|
-
]) {
|
|
112
|
-
return this.pxe.getPrivateEvents(event, from, limit, vpks);
|
|
113
|
-
}
|
|
114
|
-
getPublicEvents(event, from, limit) {
|
|
115
|
-
return this.pxe.getPublicEvents(event, from, limit);
|
|
116
|
-
}
|
|
117
|
-
getL1ToL2MembershipWitness(contractAddress, messageHash, secret) {
|
|
118
|
-
return this.pxe.getL1ToL2MembershipWitness(contractAddress, messageHash, secret);
|
|
119
|
-
}
|
|
120
|
-
getL2ToL1MembershipWitness(blockNumber, l2Tol1Message) {
|
|
121
|
-
return this.pxe.getL2ToL1MembershipWitness(blockNumber, l2Tol1Message);
|
|
122
|
-
}
|
|
123
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" resolution-mode="require"/>
|
|
2
|
-
/// <reference types="node" resolution-mode="require"/>
|
|
3
|
-
import type { Fr } from '@aztec/foundation/fields';
|
|
4
|
-
import { AuthWitness } from '@aztec/stdlib/auth-witness';
|
|
5
|
-
import type { CompleteAddress } from '@aztec/stdlib/contract';
|
|
6
|
-
import type { PXE } from '@aztec/stdlib/interfaces/client';
|
|
7
|
-
import type { TxExecutionRequest } from '@aztec/stdlib/tx';
|
|
8
|
-
import type { EntrypointInterface, ExecutionRequestInit } from '../entrypoint/entrypoint.js';
|
|
9
|
-
import type { IntentAction, IntentInnerHash } from '../utils/authwit.js';
|
|
10
|
-
import { BaseWallet } from './base_wallet.js';
|
|
11
|
-
/**
|
|
12
|
-
* Wallet implementation which creates a transaction request directly to the requested contract without any signing.
|
|
13
|
-
*/
|
|
14
|
-
export declare class SignerlessWallet extends BaseWallet {
|
|
15
|
-
private entrypoint?;
|
|
16
|
-
constructor(pxe: PXE, entrypoint?: EntrypointInterface | undefined);
|
|
17
|
-
createTxExecutionRequest(execution: ExecutionRequestInit): Promise<TxExecutionRequest>;
|
|
18
|
-
getChainId(): Fr;
|
|
19
|
-
getVersion(): Fr;
|
|
20
|
-
getPublicKeysHash(): Fr;
|
|
21
|
-
getCompleteAddress(): CompleteAddress;
|
|
22
|
-
createAuthWit(_intent: Fr | Buffer | IntentInnerHash | IntentAction): Promise<AuthWitness>;
|
|
23
|
-
isL1ToL2MessageSynced(l1ToL2Message: Fr): Promise<boolean>;
|
|
24
|
-
}
|
|
25
|
-
//# sourceMappingURL=signerless_wallet.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"signerless_wallet.d.ts","sourceRoot":"","sources":["../../src/wallet/signerless_wallet.ts"],"names":[],"mappings":";;AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AACzD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,iCAAiC,CAAC;AAC3D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAG3D,OAAO,KAAK,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AAC7F,OAAO,KAAK,EAAE,YAAY,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AACzE,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAE9C;;GAEG;AACH,qBAAa,gBAAiB,SAAQ,UAAU;IACxB,OAAO,CAAC,UAAU,CAAC;gBAA7B,GAAG,EAAE,GAAG,EAAU,UAAU,CAAC,iCAAqB;IAGxD,wBAAwB,CAAC,SAAS,EAAE,oBAAoB,GAAG,OAAO,CAAC,kBAAkB,CAAC;IAU5F,UAAU,IAAI,EAAE;IAIhB,UAAU,IAAI,EAAE;IAIhB,iBAAiB,IAAI,EAAE;IAIvB,kBAAkB,IAAI,eAAe;IAIrC,aAAa,CAAC,OAAO,EAAE,EAAE,GAAG,MAAM,GAAG,eAAe,GAAG,YAAY,GAAG,OAAO,CAAC,WAAW,CAAC;IAIjF,qBAAqB,CAAC,aAAa,EAAE,EAAE,GAAG,OAAO,CAAC,OAAO,CAAC;CAGpE"}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { DefaultEntrypoint } from '../entrypoint/default_entrypoint.js';
|
|
2
|
-
import { BaseWallet } from './base_wallet.js';
|
|
3
|
-
/**
|
|
4
|
-
* Wallet implementation which creates a transaction request directly to the requested contract without any signing.
|
|
5
|
-
*/ export class SignerlessWallet extends BaseWallet {
|
|
6
|
-
entrypoint;
|
|
7
|
-
constructor(pxe, entrypoint){
|
|
8
|
-
super(pxe), this.entrypoint = entrypoint;
|
|
9
|
-
}
|
|
10
|
-
async createTxExecutionRequest(execution) {
|
|
11
|
-
let entrypoint = this.entrypoint;
|
|
12
|
-
if (!entrypoint) {
|
|
13
|
-
const { l1ChainId: chainId, protocolVersion } = await this.pxe.getNodeInfo();
|
|
14
|
-
entrypoint = new DefaultEntrypoint(chainId, protocolVersion);
|
|
15
|
-
}
|
|
16
|
-
return entrypoint.createTxExecutionRequest(execution);
|
|
17
|
-
}
|
|
18
|
-
getChainId() {
|
|
19
|
-
throw new Error('SignerlessWallet: Method getChainId not implemented.');
|
|
20
|
-
}
|
|
21
|
-
getVersion() {
|
|
22
|
-
throw new Error('SignerlessWallet: Method getVersion not implemented.');
|
|
23
|
-
}
|
|
24
|
-
getPublicKeysHash() {
|
|
25
|
-
throw new Error('SignerlessWallet: Method getPublicKeysHash not implemented.');
|
|
26
|
-
}
|
|
27
|
-
getCompleteAddress() {
|
|
28
|
-
throw new Error('SignerlessWallet: Method getCompleteAddress not implemented.');
|
|
29
|
-
}
|
|
30
|
-
createAuthWit(_intent) {
|
|
31
|
-
throw new Error('SignerlessWallet: Method createAuthWit not implemented.');
|
|
32
|
-
}
|
|
33
|
-
isL1ToL2MessageSynced(l1ToL2Message) {
|
|
34
|
-
return this.pxe.isL1ToL2MessageSynced(l1ToL2Message);
|
|
35
|
-
}
|
|
36
|
-
}
|
package/src/account/wallet.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { AuthWitness } from '@aztec/stdlib/auth-witness';
|
|
2
|
-
import type { PXE } from '@aztec/stdlib/interfaces/client';
|
|
3
|
-
|
|
4
|
-
import type { IntentAction, IntentInnerHash } from '../utils/authwit.js';
|
|
5
|
-
import type { AccountInterface } from './interface.js';
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* The wallet interface.
|
|
9
|
-
*/
|
|
10
|
-
export type Wallet = AccountInterface &
|
|
11
|
-
PXE & {
|
|
12
|
-
createAuthWit(intent: IntentInnerHash | IntentAction): Promise<AuthWitness>;
|
|
13
|
-
};
|