├── .github └── workflows │ ├── add-to-devtools.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── README.md ├── examples ├── Cargo.toml ├── build.rs ├── manually-spawned-sandbox.md ├── noop-contract │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── res │ ├── adder.json │ ├── adder.wasm │ ├── counter.wasm │ ├── factory_contract_high_level.wasm │ ├── fungible_token.wasm │ ├── manager.wasm │ ├── non_fungible_token.wasm │ ├── noop_contract.wasm │ ├── simple_contract.wasm │ └── status_message.wasm ├── simple-contract │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── src │ ├── async_transaction.rs │ ├── build_gen_abi.rs │ ├── changes.rs │ ├── changes_in_block.rs │ ├── croncat.rs │ ├── custom_network.rs │ ├── fast_forward.rs │ ├── gen │ └── adder.rs │ ├── genesis_config.rs │ ├── macro_gen_abi.rs │ ├── nft.rs │ ├── noop.rs │ ├── protocol_config.rs │ ├── receipt.rs │ ├── ref_finance.rs │ ├── spooning.rs │ ├── status.rs │ ├── status_message.rs │ ├── tx_status.rs │ ├── validators_ordered.rs │ └── various_queries.rs ├── licenses ├── LICENSE-APACHE └── LICENSE-MIT ├── release-plz.toml ├── rust-toolchain.toml └── workspaces ├── Cargo.toml ├── README.md ├── build.rs ├── src ├── cargo │ └── mod.rs ├── error │ ├── execution.rs │ ├── impls.rs │ └── mod.rs ├── lib.rs ├── network │ ├── betanet.rs │ ├── builder.rs │ ├── config.rs │ ├── custom.rs │ ├── info.rs │ ├── mainnet.rs │ ├── mod.rs │ ├── sandbox.rs │ ├── server.rs │ ├── testnet.rs │ └── variants.rs ├── operations.rs ├── prelude.rs ├── result.rs ├── rpc │ ├── client.rs │ ├── mod.rs │ ├── patch.rs │ ├── query.rs │ └── tool.rs ├── types │ ├── account.rs │ ├── block.rs │ ├── chunk.rs │ ├── gas_meter.rs │ ├── mod.rs │ └── sdk.rs └── worker │ ├── impls.rs │ └── mod.rs └── tests ├── account.rs ├── batch_tx.rs ├── cross_contract.rs ├── deploy.rs ├── deploy_project.rs ├── gas_meter.rs ├── optional_args.rs ├── parallel_transactions.rs ├── patch_state.rs ├── query.rs ├── test-contracts ├── status-message │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── type-serialize │ ├── Cargo.toml │ ├── build.sh │ ├── res │ └── test_contract_type_serialization.wasm │ └── src │ └── lib.rs └── types.rs /.github/workflows/add-to-devtools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/.github/workflows/add-to-devtools.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @dj8yfo @akorchyn @PolyProgrammist 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/README.md -------------------------------------------------------------------------------- /examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/Cargo.toml -------------------------------------------------------------------------------- /examples/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/build.rs -------------------------------------------------------------------------------- /examples/manually-spawned-sandbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/manually-spawned-sandbox.md -------------------------------------------------------------------------------- /examples/noop-contract/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/noop-contract/Cargo.toml -------------------------------------------------------------------------------- /examples/noop-contract/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/noop-contract/src/lib.rs -------------------------------------------------------------------------------- /examples/res/adder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/res/adder.json -------------------------------------------------------------------------------- /examples/res/adder.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/res/adder.wasm -------------------------------------------------------------------------------- /examples/res/counter.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/res/counter.wasm -------------------------------------------------------------------------------- /examples/res/factory_contract_high_level.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/res/factory_contract_high_level.wasm -------------------------------------------------------------------------------- /examples/res/fungible_token.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/res/fungible_token.wasm -------------------------------------------------------------------------------- /examples/res/manager.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/res/manager.wasm -------------------------------------------------------------------------------- /examples/res/non_fungible_token.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/res/non_fungible_token.wasm -------------------------------------------------------------------------------- /examples/res/noop_contract.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/res/noop_contract.wasm -------------------------------------------------------------------------------- /examples/res/simple_contract.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/res/simple_contract.wasm -------------------------------------------------------------------------------- /examples/res/status_message.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/res/status_message.wasm -------------------------------------------------------------------------------- /examples/simple-contract/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/simple-contract/Cargo.toml -------------------------------------------------------------------------------- /examples/simple-contract/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/simple-contract/src/lib.rs -------------------------------------------------------------------------------- /examples/src/async_transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/async_transaction.rs -------------------------------------------------------------------------------- /examples/src/build_gen_abi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/build_gen_abi.rs -------------------------------------------------------------------------------- /examples/src/changes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/changes.rs -------------------------------------------------------------------------------- /examples/src/changes_in_block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/changes_in_block.rs -------------------------------------------------------------------------------- /examples/src/croncat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/croncat.rs -------------------------------------------------------------------------------- /examples/src/custom_network.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/custom_network.rs -------------------------------------------------------------------------------- /examples/src/fast_forward.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/fast_forward.rs -------------------------------------------------------------------------------- /examples/src/gen/adder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/gen/adder.rs -------------------------------------------------------------------------------- /examples/src/genesis_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/genesis_config.rs -------------------------------------------------------------------------------- /examples/src/macro_gen_abi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/macro_gen_abi.rs -------------------------------------------------------------------------------- /examples/src/nft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/nft.rs -------------------------------------------------------------------------------- /examples/src/noop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/noop.rs -------------------------------------------------------------------------------- /examples/src/protocol_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/protocol_config.rs -------------------------------------------------------------------------------- /examples/src/receipt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/receipt.rs -------------------------------------------------------------------------------- /examples/src/ref_finance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/ref_finance.rs -------------------------------------------------------------------------------- /examples/src/spooning.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/spooning.rs -------------------------------------------------------------------------------- /examples/src/status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/status.rs -------------------------------------------------------------------------------- /examples/src/status_message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/status_message.rs -------------------------------------------------------------------------------- /examples/src/tx_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/tx_status.rs -------------------------------------------------------------------------------- /examples/src/validators_ordered.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/validators_ordered.rs -------------------------------------------------------------------------------- /examples/src/various_queries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/examples/src/various_queries.rs -------------------------------------------------------------------------------- /licenses/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/licenses/LICENSE-APACHE -------------------------------------------------------------------------------- /licenses/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/licenses/LICENSE-MIT -------------------------------------------------------------------------------- /release-plz.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/release-plz.toml -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /workspaces/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/Cargo.toml -------------------------------------------------------------------------------- /workspaces/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /workspaces/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/build.rs -------------------------------------------------------------------------------- /workspaces/src/cargo/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/cargo/mod.rs -------------------------------------------------------------------------------- /workspaces/src/error/execution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/error/execution.rs -------------------------------------------------------------------------------- /workspaces/src/error/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/error/impls.rs -------------------------------------------------------------------------------- /workspaces/src/error/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/error/mod.rs -------------------------------------------------------------------------------- /workspaces/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/lib.rs -------------------------------------------------------------------------------- /workspaces/src/network/betanet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/network/betanet.rs -------------------------------------------------------------------------------- /workspaces/src/network/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/network/builder.rs -------------------------------------------------------------------------------- /workspaces/src/network/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/network/config.rs -------------------------------------------------------------------------------- /workspaces/src/network/custom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/network/custom.rs -------------------------------------------------------------------------------- /workspaces/src/network/info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/network/info.rs -------------------------------------------------------------------------------- /workspaces/src/network/mainnet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/network/mainnet.rs -------------------------------------------------------------------------------- /workspaces/src/network/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/network/mod.rs -------------------------------------------------------------------------------- /workspaces/src/network/sandbox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/network/sandbox.rs -------------------------------------------------------------------------------- /workspaces/src/network/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/network/server.rs -------------------------------------------------------------------------------- /workspaces/src/network/testnet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/network/testnet.rs -------------------------------------------------------------------------------- /workspaces/src/network/variants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/network/variants.rs -------------------------------------------------------------------------------- /workspaces/src/operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/operations.rs -------------------------------------------------------------------------------- /workspaces/src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/prelude.rs -------------------------------------------------------------------------------- /workspaces/src/result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/result.rs -------------------------------------------------------------------------------- /workspaces/src/rpc/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/rpc/client.rs -------------------------------------------------------------------------------- /workspaces/src/rpc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/rpc/mod.rs -------------------------------------------------------------------------------- /workspaces/src/rpc/patch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/rpc/patch.rs -------------------------------------------------------------------------------- /workspaces/src/rpc/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/rpc/query.rs -------------------------------------------------------------------------------- /workspaces/src/rpc/tool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/rpc/tool.rs -------------------------------------------------------------------------------- /workspaces/src/types/account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/types/account.rs -------------------------------------------------------------------------------- /workspaces/src/types/block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/types/block.rs -------------------------------------------------------------------------------- /workspaces/src/types/chunk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/types/chunk.rs -------------------------------------------------------------------------------- /workspaces/src/types/gas_meter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/types/gas_meter.rs -------------------------------------------------------------------------------- /workspaces/src/types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/types/mod.rs -------------------------------------------------------------------------------- /workspaces/src/types/sdk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/types/sdk.rs -------------------------------------------------------------------------------- /workspaces/src/worker/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/worker/impls.rs -------------------------------------------------------------------------------- /workspaces/src/worker/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/src/worker/mod.rs -------------------------------------------------------------------------------- /workspaces/tests/account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/account.rs -------------------------------------------------------------------------------- /workspaces/tests/batch_tx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/batch_tx.rs -------------------------------------------------------------------------------- /workspaces/tests/cross_contract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/cross_contract.rs -------------------------------------------------------------------------------- /workspaces/tests/deploy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/deploy.rs -------------------------------------------------------------------------------- /workspaces/tests/deploy_project.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/deploy_project.rs -------------------------------------------------------------------------------- /workspaces/tests/gas_meter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/gas_meter.rs -------------------------------------------------------------------------------- /workspaces/tests/optional_args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/optional_args.rs -------------------------------------------------------------------------------- /workspaces/tests/parallel_transactions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/parallel_transactions.rs -------------------------------------------------------------------------------- /workspaces/tests/patch_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/patch_state.rs -------------------------------------------------------------------------------- /workspaces/tests/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/query.rs -------------------------------------------------------------------------------- /workspaces/tests/test-contracts/status-message/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/test-contracts/status-message/Cargo.toml -------------------------------------------------------------------------------- /workspaces/tests/test-contracts/status-message/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/test-contracts/status-message/src/lib.rs -------------------------------------------------------------------------------- /workspaces/tests/test-contracts/type-serialize/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/test-contracts/type-serialize/Cargo.toml -------------------------------------------------------------------------------- /workspaces/tests/test-contracts/type-serialize/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/test-contracts/type-serialize/build.sh -------------------------------------------------------------------------------- /workspaces/tests/test-contracts/type-serialize/res/test_contract_type_serialization.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/test-contracts/type-serialize/res/test_contract_type_serialization.wasm -------------------------------------------------------------------------------- /workspaces/tests/test-contracts/type-serialize/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/test-contracts/type-serialize/src/lib.rs -------------------------------------------------------------------------------- /workspaces/tests/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/near/near-workspaces-rs/HEAD/workspaces/tests/types.rs --------------------------------------------------------------------------------