Using near-cli (testnet):
near call acl.testnet set_permission --amount "0.1" --accountId myaccountid.testnet '{"path": "myrepositorypath", "account_id": "myaccountid.testnet", "permission": 1}'
mainnet:
NEAR_ENV=mainnet near call wasmgit.near set_permission --amount "0.1" --accountId myaccountid.near '{"path": "myrepositorypath", "account_id": "myaccountid.near", "permission": 1}'
For creating a repository you need to have the owner permission, see lib.rs for a list of permission bit values.
In order to set permissions for a repository you need to be owner, or the repository must be free (PERMISSION_FREE = 0x08
).
Using near-cli:
testnet:
near view acl.testnet get_permission '{"account_id": "myaccountid.testnet", "path": "myrepositorypath"}'
mainnet:
near view wasmgit.near get_permission --networkId mainnet --walletUrl https://wallet.near.org --nodeUrl https://rpc.mainnet.near.org '{"account_id": "psalomo.near", "path": "psalomo202101"}'
test:
cargo test --package rust-simple-access-control -- --nocapture
build:
env 'RUSTFLAGS=-C link-arg=-s' cargo build --target wasm32-unknown-unknown --release
deploy:
near deploy --wasmFile target/wasm32-unknown-unknown/release/rust_simple_access_control.wasm --accountId acl.testnet
deploy to mainnet:
near deploy --wasmFile target/wasm32-unknown-unknown/release/rust_simple_access_control.wasm --accountId wasmgit.near --networkId mainnet --walletUrl https://wallet.near.org --nodeUrl https://rpc.mainnet.near.org