├── .gitattributes ├── .github └── workflows │ ├── add-to-devtools.yml │ ├── code_style.yml │ ├── release-plz.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CODEOWNERS ├── Cargo.lock ├── Cargo.toml ├── Cross.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── cross └── x86_64-unknown-linux-gnu │ └── Dockerfile ├── docs ├── GUIDE.en.md ├── GUIDE.ru.md ├── NEW_NEAR_CLI_INTERFACE.md ├── README.en.md ├── README.ru.md ├── SHELL_HISTORY_INTEGRATION.md └── media │ ├── block_hash.png │ ├── blocks.png │ ├── create-account.svg │ ├── install-powershell-script-small.mp4 │ ├── install-windows-msvc-msi-small.mp4 │ ├── install-windows-msvc-tar-gz-small.mp4 │ ├── linkdrop_account_id.png │ └── view-account.svg ├── extensions └── README.md ├── release-plz.toml ├── rust-toolchain ├── src ├── commands │ ├── account │ │ ├── add_key │ │ │ ├── access_key_type │ │ │ │ └── mod.rs │ │ │ ├── autogenerate_new_keypair │ │ │ │ ├── mod.rs │ │ │ │ ├── print_keypair_to_terminal │ │ │ │ │ └── mod.rs │ │ │ │ ├── save_keypair_to_keychain │ │ │ │ │ └── mod.rs │ │ │ │ └── save_keypair_to_legacy_keychain │ │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ ├── use_ledger │ │ │ │ └── mod.rs │ │ │ ├── use_manually_provided_seed_phrase │ │ │ │ └── mod.rs │ │ │ └── use_public_key │ │ │ │ └── mod.rs │ │ ├── create_account │ │ │ ├── create_implicit_account │ │ │ │ ├── mod.rs │ │ │ │ ├── use_auto_generation.rs │ │ │ │ ├── use_ledger.rs │ │ │ │ └── use_seed_phrase.rs │ │ │ ├── fund_myself_create_account │ │ │ │ ├── add_key │ │ │ │ │ ├── autogenerate_new_keypair │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── use_ledger │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── use_manually_provided_seed_phrase │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── use_public_key │ │ │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ └── sign_as │ │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── sponsor_by_faucet_service │ │ │ │ ├── add_key │ │ │ │ ├── autogenerate_new_keypair │ │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── use_ledger │ │ │ │ │ └── mod.rs │ │ │ │ ├── use_manually_provided_seed_phrase │ │ │ │ │ └── mod.rs │ │ │ │ └── use_public_key │ │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ └── network │ │ │ │ └── mod.rs │ │ ├── delete_account │ │ │ └── mod.rs │ │ ├── delete_key │ │ │ ├── mod.rs │ │ │ └── public_keys_to_delete.rs │ │ ├── export_account │ │ │ ├── mod.rs │ │ │ ├── using_private_key │ │ │ │ └── mod.rs │ │ │ ├── using_seed_phrase │ │ │ │ └── mod.rs │ │ │ └── using_web_wallet │ │ │ │ └── mod.rs │ │ ├── get_public_key │ │ │ ├── from_keychain │ │ │ │ └── mod.rs │ │ │ ├── from_ledger │ │ │ │ └── mod.rs │ │ │ ├── from_legacy_keychain │ │ │ │ └── mod.rs │ │ │ ├── from_plaintext_private_key │ │ │ │ └── mod.rs │ │ │ ├── from_seed_phrase │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── import_account │ │ │ ├── mod.rs │ │ │ ├── using_private_key │ │ │ │ └── mod.rs │ │ │ ├── using_seed_phrase │ │ │ │ └── mod.rs │ │ │ └── using_web_wallet │ │ │ │ └── mod.rs │ │ ├── list_keys │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── storage_management │ │ │ ├── mod.rs │ │ │ ├── storage_deposit.rs │ │ │ ├── storage_withdraw.rs │ │ │ └── view_storage_balance.rs │ │ ├── update_social_profile │ │ │ ├── mod.rs │ │ │ ├── profile_args_type │ │ │ │ ├── base64_args.rs │ │ │ │ ├── file_args.rs │ │ │ │ ├── json_args.rs │ │ │ │ ├── manually.rs │ │ │ │ └── mod.rs │ │ │ └── sign_as.rs │ │ └── view_account_summary │ │ │ └── mod.rs │ ├── config │ │ ├── add_connection │ │ │ └── mod.rs │ │ ├── delete_connection │ │ │ └── mod.rs │ │ ├── edit_connection │ │ │ └── mod.rs │ │ └── mod.rs │ ├── contract │ │ ├── call_function │ │ │ ├── as_read_only │ │ │ │ └── mod.rs │ │ │ ├── as_transaction │ │ │ │ └── mod.rs │ │ │ ├── call_function_args_type │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── deploy │ │ │ ├── initialize_mode │ │ │ │ ├── call_function_type │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── deploy_global │ │ │ └── mod.rs │ │ ├── download_abi │ │ │ └── mod.rs │ │ ├── download_wasm │ │ │ └── mod.rs │ │ ├── inspect │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── verify │ │ │ └── mod.rs │ │ └── view_storage │ │ │ ├── keys_to_view │ │ │ ├── all_keys.rs │ │ │ ├── keys_start_with_bytes_as_base64.rs │ │ │ ├── keys_start_with_string.rs │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── output_format │ │ │ ├── as_json.rs │ │ │ ├── as_text.rs │ │ │ └── mod.rs │ ├── extensions │ │ ├── mod.rs │ │ └── self_update │ │ │ └── mod.rs │ ├── message │ │ ├── mod.rs │ │ └── sign_nep413 │ │ │ ├── message_type │ │ │ ├── base64.rs │ │ │ ├── mod.rs │ │ │ └── utf8.rs │ │ │ ├── mod.rs │ │ │ ├── nonce │ │ │ └── mod.rs │ │ │ ├── recipient │ │ │ └── mod.rs │ │ │ ├── signature_options │ │ │ ├── mod.rs │ │ │ ├── sign_with_access_key_file.rs │ │ │ ├── sign_with_keychain.rs │ │ │ ├── sign_with_ledger.rs │ │ │ ├── sign_with_legacy_keychain.rs │ │ │ ├── sign_with_private_key.rs │ │ │ └── sign_with_seed_phrase.rs │ │ │ └── signer │ │ │ └── mod.rs │ ├── mod.rs │ ├── staking │ │ ├── delegate │ │ │ ├── deposit_and_stake.rs │ │ │ ├── mod.rs │ │ │ ├── stake.rs │ │ │ ├── stake_all.rs │ │ │ ├── unstake.rs │ │ │ ├── unstake_all.rs │ │ │ ├── view_balance.rs │ │ │ ├── withdraw.rs │ │ │ └── withdraw_all.rs │ │ ├── mod.rs │ │ └── validator_list │ │ │ └── mod.rs │ ├── tokens │ │ ├── mod.rs │ │ ├── send_ft │ │ │ ├── amount_ft.rs │ │ │ └── mod.rs │ │ ├── send_near │ │ │ └── mod.rs │ │ ├── send_nft │ │ │ └── mod.rs │ │ ├── view_ft_balance │ │ │ └── mod.rs │ │ ├── view_near_balance │ │ │ └── mod.rs │ │ └── view_nft_assets │ │ │ └── mod.rs │ └── transaction │ │ ├── construct_transaction │ │ ├── add_action_1 │ │ │ ├── add_action │ │ │ │ ├── add_key │ │ │ │ │ ├── access_key_type │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── use_manually_provided_seed_phrase │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── use_public_key │ │ │ │ │ │ └── mod.rs │ │ │ │ ├── call_function │ │ │ │ │ └── mod.rs │ │ │ │ ├── create_account │ │ │ │ │ └── mod.rs │ │ │ │ ├── delete_account │ │ │ │ │ └── mod.rs │ │ │ │ ├── delete_key │ │ │ │ │ └── mod.rs │ │ │ │ ├── deploy_contract │ │ │ │ │ ├── initialize_mode │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── deploy_global_contract │ │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── stake │ │ │ │ │ └── mod.rs │ │ │ │ ├── transfer │ │ │ │ │ └── mod.rs │ │ │ │ └── use_global_contract │ │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── add_action_2 │ │ │ ├── add_action │ │ │ │ ├── add_key │ │ │ │ │ ├── access_key_type │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── use_manually_provided_seed_phrase │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── use_public_key │ │ │ │ │ │ └── mod.rs │ │ │ │ ├── call_function │ │ │ │ │ └── mod.rs │ │ │ │ ├── create_account │ │ │ │ │ └── mod.rs │ │ │ │ ├── delete_account │ │ │ │ │ └── mod.rs │ │ │ │ ├── delete_key │ │ │ │ │ └── mod.rs │ │ │ │ ├── deploy_contract │ │ │ │ │ ├── initialize_mode │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── deploy_global_contract │ │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── stake │ │ │ │ │ └── mod.rs │ │ │ │ ├── transfer │ │ │ │ │ └── mod.rs │ │ │ │ └── use_global_contract │ │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── add_action_3 │ │ │ ├── add_action │ │ │ │ ├── add_key │ │ │ │ │ ├── access_key_type │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── use_manually_provided_seed_phrase │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── use_public_key │ │ │ │ │ │ └── mod.rs │ │ │ │ ├── call_function │ │ │ │ │ └── mod.rs │ │ │ │ ├── create_account │ │ │ │ │ └── mod.rs │ │ │ │ ├── delete_account │ │ │ │ │ └── mod.rs │ │ │ │ ├── delete_key │ │ │ │ │ └── mod.rs │ │ │ │ ├── deploy_contract │ │ │ │ │ ├── initialize_mode │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── deploy_global_contract │ │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── stake │ │ │ │ │ └── mod.rs │ │ │ │ ├── transfer │ │ │ │ │ └── mod.rs │ │ │ │ └── use_global_contract │ │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── add_action_last │ │ │ └── mod.rs │ │ ├── mod.rs │ │ └── skip_action │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── print_transaction │ │ ├── mod.rs │ │ ├── signed │ │ │ └── mod.rs │ │ └── unsigned │ │ │ └── mod.rs │ │ ├── reconstruct_transaction │ │ └── mod.rs │ │ ├── send_meta_transaction │ │ ├── mod.rs │ │ └── sign_as │ │ │ └── mod.rs │ │ ├── send_signed_transaction │ │ ├── mod.rs │ │ └── network │ │ │ └── mod.rs │ │ ├── sign_transaction │ │ └── mod.rs │ │ └── view_status │ │ └── mod.rs ├── common.rs ├── config │ ├── migrations.rs │ └── mod.rs ├── js_command_match │ ├── account │ │ ├── create.rs │ │ ├── delete.rs │ │ ├── login.rs │ │ ├── mod.rs │ │ └── state.rs │ ├── constants.rs │ ├── contract │ │ ├── call.rs │ │ ├── deploy.rs │ │ ├── mod.rs │ │ ├── storage.rs │ │ └── view.rs │ ├── deprecated.rs │ ├── keys │ │ ├── add.rs │ │ ├── delete.rs │ │ ├── list.rs │ │ └── mod.rs │ ├── mod.rs │ └── transactions │ │ ├── mod.rs │ │ ├── send.rs │ │ └── status.rs ├── lib.rs ├── main.rs ├── network │ └── mod.rs ├── network_for_transaction │ └── mod.rs ├── network_view_at_block │ └── mod.rs ├── transaction_signature_options │ ├── display │ │ └── mod.rs │ ├── mod.rs │ ├── save_to_file │ │ └── mod.rs │ ├── send │ │ └── mod.rs │ ├── sign_later │ │ ├── display.rs │ │ ├── mod.rs │ │ └── save_to_file.rs │ ├── sign_with_access_key_file │ │ └── mod.rs │ ├── sign_with_keychain │ │ └── mod.rs │ ├── sign_with_ledger │ │ └── mod.rs │ ├── sign_with_legacy_keychain │ │ └── mod.rs │ ├── sign_with_mpc │ │ ├── mod.rs │ │ ├── mpc_sign_request.rs │ │ ├── mpc_sign_result.rs │ │ └── mpc_sign_with.rs │ ├── sign_with_private_key │ │ └── mod.rs │ ├── sign_with_seed_phrase │ │ └── mod.rs │ └── submit_dao_proposal │ │ ├── dao_kind_arguments.rs │ │ ├── dao_sign_with.rs │ │ └── mod.rs ├── types │ ├── account_id.rs │ ├── api_key.rs │ ├── base64_bytes.rs │ ├── contract_properties.rs │ ├── crypto_hash.rs │ ├── file_bytes.rs │ ├── ft_properties.rs │ ├── json.rs │ ├── mod.rs │ ├── near_allowance.rs │ ├── near_token.rs │ ├── nonce32_bytes.rs │ ├── partial_protocol_config.rs │ ├── path_buf.rs │ ├── public_key.rs │ ├── public_key_list.rs │ ├── secret_key.rs │ ├── signature.rs │ ├── signed_delegate_action.rs │ ├── signed_transaction.rs │ ├── slip10.rs │ ├── transaction.rs │ ├── url.rs │ └── vec_string.rs └── utils_command │ ├── generate_keypair_subcommand │ └── mod.rs │ └── mod.rs ├── tests ├── account.rs ├── common │ └── mod.rs ├── snapshots │ ├── account__view_account_summary.snap │ └── tokens__view_near_balance.snap └── tokens.rs └── wix └── main.wxs /.gitattributes: -------------------------------------------------------------------------------- 1 | Cargo.lock linguist-generated=true -diff 2 | -------------------------------------------------------------------------------- /.github/workflows/add-to-devtools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/.github/workflows/add-to-devtools.yml -------------------------------------------------------------------------------- /.github/workflows/code_style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/.github/workflows/code_style.yml -------------------------------------------------------------------------------- /.github/workflows/release-plz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/.github/workflows/release-plz.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @FroVolod @akorchyn @PolyProgrammist @frol 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Cross.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/Cross.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/README.md -------------------------------------------------------------------------------- /cross/x86_64-unknown-linux-gnu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/cross/x86_64-unknown-linux-gnu/Dockerfile -------------------------------------------------------------------------------- /docs/GUIDE.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/docs/GUIDE.en.md -------------------------------------------------------------------------------- /docs/GUIDE.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/docs/GUIDE.ru.md -------------------------------------------------------------------------------- /docs/NEW_NEAR_CLI_INTERFACE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/docs/NEW_NEAR_CLI_INTERFACE.md -------------------------------------------------------------------------------- /docs/README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/docs/README.en.md -------------------------------------------------------------------------------- /docs/README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/docs/README.ru.md -------------------------------------------------------------------------------- /docs/SHELL_HISTORY_INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/docs/SHELL_HISTORY_INTEGRATION.md -------------------------------------------------------------------------------- /docs/media/block_hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/docs/media/block_hash.png -------------------------------------------------------------------------------- /docs/media/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/docs/media/blocks.png -------------------------------------------------------------------------------- /docs/media/create-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/docs/media/create-account.svg -------------------------------------------------------------------------------- /docs/media/install-powershell-script-small.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/docs/media/install-powershell-script-small.mp4 -------------------------------------------------------------------------------- /docs/media/install-windows-msvc-msi-small.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/docs/media/install-windows-msvc-msi-small.mp4 -------------------------------------------------------------------------------- /docs/media/install-windows-msvc-tar-gz-small.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/docs/media/install-windows-msvc-tar-gz-small.mp4 -------------------------------------------------------------------------------- /docs/media/linkdrop_account_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/docs/media/linkdrop_account_id.png -------------------------------------------------------------------------------- /docs/media/view-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/docs/media/view-account.svg -------------------------------------------------------------------------------- /extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/extensions/README.md -------------------------------------------------------------------------------- /release-plz.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | git_release_enable = false 3 | -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | stable 2 | -------------------------------------------------------------------------------- /src/commands/account/add_key/access_key_type/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/add_key/access_key_type/mod.rs -------------------------------------------------------------------------------- /src/commands/account/add_key/autogenerate_new_keypair/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/add_key/autogenerate_new_keypair/mod.rs -------------------------------------------------------------------------------- /src/commands/account/add_key/autogenerate_new_keypair/print_keypair_to_terminal/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/add_key/autogenerate_new_keypair/print_keypair_to_terminal/mod.rs -------------------------------------------------------------------------------- /src/commands/account/add_key/autogenerate_new_keypair/save_keypair_to_keychain/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/add_key/autogenerate_new_keypair/save_keypair_to_keychain/mod.rs -------------------------------------------------------------------------------- /src/commands/account/add_key/autogenerate_new_keypair/save_keypair_to_legacy_keychain/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/add_key/autogenerate_new_keypair/save_keypair_to_legacy_keychain/mod.rs -------------------------------------------------------------------------------- /src/commands/account/add_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/add_key/mod.rs -------------------------------------------------------------------------------- /src/commands/account/add_key/use_ledger/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/add_key/use_ledger/mod.rs -------------------------------------------------------------------------------- /src/commands/account/add_key/use_manually_provided_seed_phrase/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/add_key/use_manually_provided_seed_phrase/mod.rs -------------------------------------------------------------------------------- /src/commands/account/add_key/use_public_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/add_key/use_public_key/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/create_implicit_account/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/create_implicit_account/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/create_implicit_account/use_auto_generation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/create_implicit_account/use_auto_generation.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/create_implicit_account/use_ledger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/create_implicit_account/use_ledger.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/create_implicit_account/use_seed_phrase.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/create_implicit_account/use_seed_phrase.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/fund_myself_create_account/add_key/autogenerate_new_keypair/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/fund_myself_create_account/add_key/autogenerate_new_keypair/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/fund_myself_create_account/add_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/fund_myself_create_account/add_key/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/fund_myself_create_account/add_key/use_ledger/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/fund_myself_create_account/add_key/use_ledger/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/fund_myself_create_account/add_key/use_manually_provided_seed_phrase/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/fund_myself_create_account/add_key/use_manually_provided_seed_phrase/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/fund_myself_create_account/add_key/use_public_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/fund_myself_create_account/add_key/use_public_key/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/fund_myself_create_account/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/fund_myself_create_account/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/fund_myself_create_account/sign_as/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/fund_myself_create_account/sign_as/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/sponsor_by_faucet_service/add_key/autogenerate_new_keypair/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/sponsor_by_faucet_service/add_key/autogenerate_new_keypair/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/sponsor_by_faucet_service/add_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/sponsor_by_faucet_service/add_key/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/sponsor_by_faucet_service/add_key/use_ledger/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/sponsor_by_faucet_service/add_key/use_ledger/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/sponsor_by_faucet_service/add_key/use_manually_provided_seed_phrase/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/sponsor_by_faucet_service/add_key/use_manually_provided_seed_phrase/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/sponsor_by_faucet_service/add_key/use_public_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/sponsor_by_faucet_service/add_key/use_public_key/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/sponsor_by_faucet_service/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/sponsor_by_faucet_service/mod.rs -------------------------------------------------------------------------------- /src/commands/account/create_account/sponsor_by_faucet_service/network/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/create_account/sponsor_by_faucet_service/network/mod.rs -------------------------------------------------------------------------------- /src/commands/account/delete_account/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/delete_account/mod.rs -------------------------------------------------------------------------------- /src/commands/account/delete_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/delete_key/mod.rs -------------------------------------------------------------------------------- /src/commands/account/delete_key/public_keys_to_delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/delete_key/public_keys_to_delete.rs -------------------------------------------------------------------------------- /src/commands/account/export_account/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/export_account/mod.rs -------------------------------------------------------------------------------- /src/commands/account/export_account/using_private_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/export_account/using_private_key/mod.rs -------------------------------------------------------------------------------- /src/commands/account/export_account/using_seed_phrase/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/export_account/using_seed_phrase/mod.rs -------------------------------------------------------------------------------- /src/commands/account/export_account/using_web_wallet/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/export_account/using_web_wallet/mod.rs -------------------------------------------------------------------------------- /src/commands/account/get_public_key/from_keychain/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/get_public_key/from_keychain/mod.rs -------------------------------------------------------------------------------- /src/commands/account/get_public_key/from_ledger/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/get_public_key/from_ledger/mod.rs -------------------------------------------------------------------------------- /src/commands/account/get_public_key/from_legacy_keychain/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/get_public_key/from_legacy_keychain/mod.rs -------------------------------------------------------------------------------- /src/commands/account/get_public_key/from_plaintext_private_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/get_public_key/from_plaintext_private_key/mod.rs -------------------------------------------------------------------------------- /src/commands/account/get_public_key/from_seed_phrase/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/get_public_key/from_seed_phrase/mod.rs -------------------------------------------------------------------------------- /src/commands/account/get_public_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/get_public_key/mod.rs -------------------------------------------------------------------------------- /src/commands/account/import_account/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/import_account/mod.rs -------------------------------------------------------------------------------- /src/commands/account/import_account/using_private_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/import_account/using_private_key/mod.rs -------------------------------------------------------------------------------- /src/commands/account/import_account/using_seed_phrase/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/import_account/using_seed_phrase/mod.rs -------------------------------------------------------------------------------- /src/commands/account/import_account/using_web_wallet/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/import_account/using_web_wallet/mod.rs -------------------------------------------------------------------------------- /src/commands/account/list_keys/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/list_keys/mod.rs -------------------------------------------------------------------------------- /src/commands/account/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/mod.rs -------------------------------------------------------------------------------- /src/commands/account/storage_management/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/storage_management/mod.rs -------------------------------------------------------------------------------- /src/commands/account/storage_management/storage_deposit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/storage_management/storage_deposit.rs -------------------------------------------------------------------------------- /src/commands/account/storage_management/storage_withdraw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/storage_management/storage_withdraw.rs -------------------------------------------------------------------------------- /src/commands/account/storage_management/view_storage_balance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/storage_management/view_storage_balance.rs -------------------------------------------------------------------------------- /src/commands/account/update_social_profile/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/update_social_profile/mod.rs -------------------------------------------------------------------------------- /src/commands/account/update_social_profile/profile_args_type/base64_args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/update_social_profile/profile_args_type/base64_args.rs -------------------------------------------------------------------------------- /src/commands/account/update_social_profile/profile_args_type/file_args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/update_social_profile/profile_args_type/file_args.rs -------------------------------------------------------------------------------- /src/commands/account/update_social_profile/profile_args_type/json_args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/update_social_profile/profile_args_type/json_args.rs -------------------------------------------------------------------------------- /src/commands/account/update_social_profile/profile_args_type/manually.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/update_social_profile/profile_args_type/manually.rs -------------------------------------------------------------------------------- /src/commands/account/update_social_profile/profile_args_type/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/update_social_profile/profile_args_type/mod.rs -------------------------------------------------------------------------------- /src/commands/account/update_social_profile/sign_as.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/update_social_profile/sign_as.rs -------------------------------------------------------------------------------- /src/commands/account/view_account_summary/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/account/view_account_summary/mod.rs -------------------------------------------------------------------------------- /src/commands/config/add_connection/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/config/add_connection/mod.rs -------------------------------------------------------------------------------- /src/commands/config/delete_connection/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/config/delete_connection/mod.rs -------------------------------------------------------------------------------- /src/commands/config/edit_connection/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/config/edit_connection/mod.rs -------------------------------------------------------------------------------- /src/commands/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/config/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/call_function/as_read_only/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/call_function/as_read_only/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/call_function/as_transaction/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/call_function/as_transaction/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/call_function/call_function_args_type/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/call_function/call_function_args_type/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/call_function/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/call_function/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/deploy/initialize_mode/call_function_type/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/deploy/initialize_mode/call_function_type/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/deploy/initialize_mode/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/deploy/initialize_mode/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/deploy/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/deploy/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/deploy_global/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/deploy_global/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/download_abi/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/download_abi/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/download_wasm/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/download_wasm/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/inspect/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/inspect/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/verify/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/verify/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/view_storage/keys_to_view/all_keys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/view_storage/keys_to_view/all_keys.rs -------------------------------------------------------------------------------- /src/commands/contract/view_storage/keys_to_view/keys_start_with_bytes_as_base64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/view_storage/keys_to_view/keys_start_with_bytes_as_base64.rs -------------------------------------------------------------------------------- /src/commands/contract/view_storage/keys_to_view/keys_start_with_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/view_storage/keys_to_view/keys_start_with_string.rs -------------------------------------------------------------------------------- /src/commands/contract/view_storage/keys_to_view/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/view_storage/keys_to_view/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/view_storage/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/view_storage/mod.rs -------------------------------------------------------------------------------- /src/commands/contract/view_storage/output_format/as_json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/view_storage/output_format/as_json.rs -------------------------------------------------------------------------------- /src/commands/contract/view_storage/output_format/as_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/view_storage/output_format/as_text.rs -------------------------------------------------------------------------------- /src/commands/contract/view_storage/output_format/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/contract/view_storage/output_format/mod.rs -------------------------------------------------------------------------------- /src/commands/extensions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/extensions/mod.rs -------------------------------------------------------------------------------- /src/commands/extensions/self_update/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/extensions/self_update/mod.rs -------------------------------------------------------------------------------- /src/commands/message/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/mod.rs -------------------------------------------------------------------------------- /src/commands/message/sign_nep413/message_type/base64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/sign_nep413/message_type/base64.rs -------------------------------------------------------------------------------- /src/commands/message/sign_nep413/message_type/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/sign_nep413/message_type/mod.rs -------------------------------------------------------------------------------- /src/commands/message/sign_nep413/message_type/utf8.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/sign_nep413/message_type/utf8.rs -------------------------------------------------------------------------------- /src/commands/message/sign_nep413/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/sign_nep413/mod.rs -------------------------------------------------------------------------------- /src/commands/message/sign_nep413/nonce/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/sign_nep413/nonce/mod.rs -------------------------------------------------------------------------------- /src/commands/message/sign_nep413/recipient/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/sign_nep413/recipient/mod.rs -------------------------------------------------------------------------------- /src/commands/message/sign_nep413/signature_options/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/sign_nep413/signature_options/mod.rs -------------------------------------------------------------------------------- /src/commands/message/sign_nep413/signature_options/sign_with_access_key_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/sign_nep413/signature_options/sign_with_access_key_file.rs -------------------------------------------------------------------------------- /src/commands/message/sign_nep413/signature_options/sign_with_keychain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/sign_nep413/signature_options/sign_with_keychain.rs -------------------------------------------------------------------------------- /src/commands/message/sign_nep413/signature_options/sign_with_ledger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/sign_nep413/signature_options/sign_with_ledger.rs -------------------------------------------------------------------------------- /src/commands/message/sign_nep413/signature_options/sign_with_legacy_keychain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/sign_nep413/signature_options/sign_with_legacy_keychain.rs -------------------------------------------------------------------------------- /src/commands/message/sign_nep413/signature_options/sign_with_private_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/sign_nep413/signature_options/sign_with_private_key.rs -------------------------------------------------------------------------------- /src/commands/message/sign_nep413/signature_options/sign_with_seed_phrase.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/sign_nep413/signature_options/sign_with_seed_phrase.rs -------------------------------------------------------------------------------- /src/commands/message/sign_nep413/signer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/message/sign_nep413/signer/mod.rs -------------------------------------------------------------------------------- /src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/mod.rs -------------------------------------------------------------------------------- /src/commands/staking/delegate/deposit_and_stake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/staking/delegate/deposit_and_stake.rs -------------------------------------------------------------------------------- /src/commands/staking/delegate/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/staking/delegate/mod.rs -------------------------------------------------------------------------------- /src/commands/staking/delegate/stake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/staking/delegate/stake.rs -------------------------------------------------------------------------------- /src/commands/staking/delegate/stake_all.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/staking/delegate/stake_all.rs -------------------------------------------------------------------------------- /src/commands/staking/delegate/unstake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/staking/delegate/unstake.rs -------------------------------------------------------------------------------- /src/commands/staking/delegate/unstake_all.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/staking/delegate/unstake_all.rs -------------------------------------------------------------------------------- /src/commands/staking/delegate/view_balance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/staking/delegate/view_balance.rs -------------------------------------------------------------------------------- /src/commands/staking/delegate/withdraw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/staking/delegate/withdraw.rs -------------------------------------------------------------------------------- /src/commands/staking/delegate/withdraw_all.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/staking/delegate/withdraw_all.rs -------------------------------------------------------------------------------- /src/commands/staking/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/staking/mod.rs -------------------------------------------------------------------------------- /src/commands/staking/validator_list/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/staking/validator_list/mod.rs -------------------------------------------------------------------------------- /src/commands/tokens/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/tokens/mod.rs -------------------------------------------------------------------------------- /src/commands/tokens/send_ft/amount_ft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/tokens/send_ft/amount_ft.rs -------------------------------------------------------------------------------- /src/commands/tokens/send_ft/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/tokens/send_ft/mod.rs -------------------------------------------------------------------------------- /src/commands/tokens/send_near/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/tokens/send_near/mod.rs -------------------------------------------------------------------------------- /src/commands/tokens/send_nft/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/tokens/send_nft/mod.rs -------------------------------------------------------------------------------- /src/commands/tokens/view_ft_balance/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/tokens/view_ft_balance/mod.rs -------------------------------------------------------------------------------- /src/commands/tokens/view_near_balance/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/tokens/view_near_balance/mod.rs -------------------------------------------------------------------------------- /src/commands/tokens/view_nft_assets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/tokens/view_nft_assets/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/add_key/access_key_type/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/add_key/access_key_type/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/add_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/add_key/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/add_key/use_manually_provided_seed_phrase/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/add_key/use_manually_provided_seed_phrase/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/add_key/use_public_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/add_key/use_public_key/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/call_function/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/call_function/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/create_account/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/create_account/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/delete_account/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/delete_account/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/delete_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/delete_key/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/deploy_contract/initialize_mode/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/deploy_contract/initialize_mode/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/deploy_contract/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/deploy_contract/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/deploy_global_contract/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/deploy_global_contract/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/stake/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/stake/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/transfer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/transfer/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/add_action/use_global_contract/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/add_action/use_global_contract/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_1/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_1/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/add_key/access_key_type/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/add_key/access_key_type/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/add_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/add_key/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/add_key/use_manually_provided_seed_phrase/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/add_key/use_manually_provided_seed_phrase/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/add_key/use_public_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/add_key/use_public_key/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/call_function/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/call_function/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/create_account/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/create_account/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/delete_account/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/delete_account/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/delete_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/delete_key/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/deploy_contract/initialize_mode/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/deploy_contract/initialize_mode/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/deploy_contract/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/deploy_contract/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/deploy_global_contract/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/deploy_global_contract/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/stake/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/stake/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/transfer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/transfer/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/add_action/use_global_contract/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/add_action/use_global_contract/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_2/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_2/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/add_key/access_key_type/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/add_key/access_key_type/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/add_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/add_key/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/add_key/use_manually_provided_seed_phrase/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/add_key/use_manually_provided_seed_phrase/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/add_key/use_public_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/add_key/use_public_key/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/call_function/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/call_function/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/create_account/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/create_account/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/delete_account/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/delete_account/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/delete_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/delete_key/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/deploy_contract/initialize_mode/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/deploy_contract/initialize_mode/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/deploy_contract/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/deploy_contract/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/deploy_global_contract/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/deploy_global_contract/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/stake/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/stake/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/transfer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/transfer/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/add_action/use_global_contract/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/add_action/use_global_contract/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_3/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_3/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/add_action_last/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/add_action_last/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/construct_transaction/skip_action/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/construct_transaction/skip_action/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/print_transaction/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/print_transaction/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/print_transaction/signed/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/print_transaction/signed/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/print_transaction/unsigned/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/print_transaction/unsigned/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/reconstruct_transaction/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/reconstruct_transaction/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/send_meta_transaction/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/send_meta_transaction/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/send_meta_transaction/sign_as/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/send_meta_transaction/sign_as/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/send_signed_transaction/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/send_signed_transaction/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/send_signed_transaction/network/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/send_signed_transaction/network/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/sign_transaction/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/sign_transaction/mod.rs -------------------------------------------------------------------------------- /src/commands/transaction/view_status/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/commands/transaction/view_status/mod.rs -------------------------------------------------------------------------------- /src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/common.rs -------------------------------------------------------------------------------- /src/config/migrations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/config/migrations.rs -------------------------------------------------------------------------------- /src/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/config/mod.rs -------------------------------------------------------------------------------- /src/js_command_match/account/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/account/create.rs -------------------------------------------------------------------------------- /src/js_command_match/account/delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/account/delete.rs -------------------------------------------------------------------------------- /src/js_command_match/account/login.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/account/login.rs -------------------------------------------------------------------------------- /src/js_command_match/account/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/account/mod.rs -------------------------------------------------------------------------------- /src/js_command_match/account/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/account/state.rs -------------------------------------------------------------------------------- /src/js_command_match/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/constants.rs -------------------------------------------------------------------------------- /src/js_command_match/contract/call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/contract/call.rs -------------------------------------------------------------------------------- /src/js_command_match/contract/deploy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/contract/deploy.rs -------------------------------------------------------------------------------- /src/js_command_match/contract/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/contract/mod.rs -------------------------------------------------------------------------------- /src/js_command_match/contract/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/contract/storage.rs -------------------------------------------------------------------------------- /src/js_command_match/contract/view.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/contract/view.rs -------------------------------------------------------------------------------- /src/js_command_match/deprecated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/deprecated.rs -------------------------------------------------------------------------------- /src/js_command_match/keys/add.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/keys/add.rs -------------------------------------------------------------------------------- /src/js_command_match/keys/delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/keys/delete.rs -------------------------------------------------------------------------------- /src/js_command_match/keys/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/keys/list.rs -------------------------------------------------------------------------------- /src/js_command_match/keys/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/keys/mod.rs -------------------------------------------------------------------------------- /src/js_command_match/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/mod.rs -------------------------------------------------------------------------------- /src/js_command_match/transactions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/transactions/mod.rs -------------------------------------------------------------------------------- /src/js_command_match/transactions/send.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/transactions/send.rs -------------------------------------------------------------------------------- /src/js_command_match/transactions/status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/js_command_match/transactions/status.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/network/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/network/mod.rs -------------------------------------------------------------------------------- /src/network_for_transaction/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/network_for_transaction/mod.rs -------------------------------------------------------------------------------- /src/network_view_at_block/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/network_view_at_block/mod.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/display/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/display/mod.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/mod.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/save_to_file/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/save_to_file/mod.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/send/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/send/mod.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/sign_later/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/sign_later/display.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/sign_later/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/sign_later/mod.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/sign_later/save_to_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/sign_later/save_to_file.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/sign_with_access_key_file/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/sign_with_access_key_file/mod.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/sign_with_keychain/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/sign_with_keychain/mod.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/sign_with_ledger/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/sign_with_ledger/mod.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/sign_with_legacy_keychain/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/sign_with_legacy_keychain/mod.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/sign_with_mpc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/sign_with_mpc/mod.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/sign_with_mpc/mpc_sign_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/sign_with_mpc/mpc_sign_request.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/sign_with_mpc/mpc_sign_result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/sign_with_mpc/mpc_sign_result.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/sign_with_mpc/mpc_sign_with.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/sign_with_mpc/mpc_sign_with.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/sign_with_private_key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/sign_with_private_key/mod.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/sign_with_seed_phrase/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/sign_with_seed_phrase/mod.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/submit_dao_proposal/dao_kind_arguments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/submit_dao_proposal/dao_kind_arguments.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/submit_dao_proposal/dao_sign_with.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/submit_dao_proposal/dao_sign_with.rs -------------------------------------------------------------------------------- /src/transaction_signature_options/submit_dao_proposal/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/transaction_signature_options/submit_dao_proposal/mod.rs -------------------------------------------------------------------------------- /src/types/account_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/account_id.rs -------------------------------------------------------------------------------- /src/types/api_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/api_key.rs -------------------------------------------------------------------------------- /src/types/base64_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/base64_bytes.rs -------------------------------------------------------------------------------- /src/types/contract_properties.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/contract_properties.rs -------------------------------------------------------------------------------- /src/types/crypto_hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/crypto_hash.rs -------------------------------------------------------------------------------- /src/types/file_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/file_bytes.rs -------------------------------------------------------------------------------- /src/types/ft_properties.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/ft_properties.rs -------------------------------------------------------------------------------- /src/types/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/json.rs -------------------------------------------------------------------------------- /src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/mod.rs -------------------------------------------------------------------------------- /src/types/near_allowance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/near_allowance.rs -------------------------------------------------------------------------------- /src/types/near_token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/near_token.rs -------------------------------------------------------------------------------- /src/types/nonce32_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/nonce32_bytes.rs -------------------------------------------------------------------------------- /src/types/partial_protocol_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/partial_protocol_config.rs -------------------------------------------------------------------------------- /src/types/path_buf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/path_buf.rs -------------------------------------------------------------------------------- /src/types/public_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/public_key.rs -------------------------------------------------------------------------------- /src/types/public_key_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/public_key_list.rs -------------------------------------------------------------------------------- /src/types/secret_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/secret_key.rs -------------------------------------------------------------------------------- /src/types/signature.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/signature.rs -------------------------------------------------------------------------------- /src/types/signed_delegate_action.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/signed_delegate_action.rs -------------------------------------------------------------------------------- /src/types/signed_transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/signed_transaction.rs -------------------------------------------------------------------------------- /src/types/slip10.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/slip10.rs -------------------------------------------------------------------------------- /src/types/transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/transaction.rs -------------------------------------------------------------------------------- /src/types/url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/url.rs -------------------------------------------------------------------------------- /src/types/vec_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/types/vec_string.rs -------------------------------------------------------------------------------- /src/utils_command/generate_keypair_subcommand/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/src/utils_command/generate_keypair_subcommand/mod.rs -------------------------------------------------------------------------------- /src/utils_command/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod generate_keypair_subcommand; 2 | -------------------------------------------------------------------------------- /tests/account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/tests/account.rs -------------------------------------------------------------------------------- /tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/tests/common/mod.rs -------------------------------------------------------------------------------- /tests/snapshots/account__view_account_summary.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/tests/snapshots/account__view_account_summary.snap -------------------------------------------------------------------------------- /tests/snapshots/tokens__view_near_balance.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/tests/snapshots/tokens__view_near_balance.snap -------------------------------------------------------------------------------- /tests/tokens.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/tests/tokens.rs -------------------------------------------------------------------------------- /wix/main.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-cli-rs/HEAD/wix/main.wxs --------------------------------------------------------------------------------