@@ -67,8 +67,10 @@ subnet):
67
67
| CreditManager | Subnet | ` 0xTODO ` |
68
68
| ValidatorGater | Subnet | ` 0x880126f3134EdFBa4f1a65827D5870f021bb7124 ` |
69
69
70
- To get testnet tokens, visit: [ https://faucet.node-0.testnet.recall.network ] ( https://faucet.node-0.testnet.recall.network ) . Also, you can check
71
- out the ` foundry.toml ` file to see the RPC URLs for each network (described in more detail below).
70
+ To get testnet tokens, visit:
71
+ [ https://faucet.node-0.testnet.recall.network ] ( https://faucet.node-0.testnet.recall.network ) . Also,
72
+ you can check out the ` foundry.toml ` file to see the RPC URLs for each network (described in more
73
+ detail below).
72
74
73
75
## Usage
74
76
@@ -665,11 +667,12 @@ export BUCKETS=0x314512a8692245cf507ac6E9d0eB805EA820d9a8
665
667
The account you use to create buckets should have the following:
666
668
667
669
- A RECALL token balance in the subnet (e.g., from the faucet at:
668
- [ https://faucet.node-0.testnet.recall.network ] ( https://faucet.node-0.testnet.recall.network ) ). You can verify this with the
669
- [ Recall CLI] ( https://github.com/recallnet/rust-recall ) : ` recall account info `
670
- - A credit balance in the subnet. You can verify this with ` recall credit balance ` . If you don't have
671
- credits, you can buy them with the Credits contract above, or run the ` recall credit buy <amount> `
672
- command.
670
+ [ https://faucet.node-0.testnet.recall.network ] ( https://faucet.node-0.testnet.recall.network ) ). You
671
+ can verify this with the [ Recall CLI] ( https://github.com/recallnet/rust-recall ) :
672
+ ` recall account info `
673
+ - A credit balance in the subnet. You can verify this with ` recall credit balance ` . If you don't
674
+ have credits, you can buy them with the Credits contract above, or run the
675
+ ` recall credit buy <amount> ` command.
673
676
674
677
Creating a bucket will cost native RECALL tokens, and writing to it will cost credit.
675
678
@@ -979,6 +982,7 @@ In the example below, we've already staged this data offchain and are using the
979
982
string).
980
983
- ` ttl ` : Blob time-to-live epochs. If specified as ` 0 ` , the auto-debitor maintains about one hour of
981
984
credits as an ongoing commitment.
985
+ - ` from ` : The address of the account to use for the transaction.
982
986
983
987
This all gets passed as a single ` AddBlobParams ` struct to the ` addBlob ` method:
984
988
@@ -991,17 +995,18 @@ struct AddBlobParams {
991
995
string subscriptionId; // use `""` for the default, or pass a string value
992
996
uint64 size; // 6
993
997
uint64 ttl; // 0 (which is interpreted as null)
998
+ address from; // 0x90F79bf6EB2c4f870365E785982E1f101E93b906
994
999
}
995
1000
```
996
1001
997
1002
We then pass this as a single parameter to the ` add ` method:
998
1003
999
1004
``` sh
1000
- cast send --rpc-url $ETH_RPC_URL $BLOBS " addBlob((address,string,string,string,string,uint64,uint64))" ' (0x0000000000000000000000000000000000000000,"cydkrslhbj4soqppzc66u6lzwxgjwgbhdlxmyeahytzqrh65qtjq","rzghyg4z3p6vbz5jkgc75lk64fci7kieul65o6hk6xznx7lctkmq",""," ",6,0) ' --private-key $PRIVATE_KEY
1005
+ cast send --rpc-url $ETH_RPC_URL $BLOBS " addBlob((address,string,string,string,string,uint64,uint64,address ))" " (0x0000000000000000000000000000000000000000," cydkrslhbj4soqppzc66u6lzwxgjwgbhdlxmyeahytzqrh65qtjq" ," rzghyg4z3p6vbz5jkgc75lk64fci7kieul65o6hk6xznx7lctkmq" ,\"\" , \"\ " ,6,0, $EVM_ADDRESS ) " --private-key $PRIVATE_KEY
1001
1006
```
1002
1007
1003
- To include a custom subscription ID, you would replace the empty string (which indicates ` Default ` )
1004
- in the call above, like so: ` (...,"rzgh...","","my_custom_id",6,0) ` .
1008
+ To include a custom subscription ID, you would replace the empty string (which indicates ` default ` )
1009
+ in the call above, like so: ` (...,"rzgh...","","my_custom_id",6,0,... ) ` .
1005
1010
1006
1011
If you're wondering where to get the ` source ` storage bucket's node ID (the example's
1007
1012
` cydkrslhbj4soqppzc66u6lzwxgjwgbhdlxmyeahytzqrh65qtjq ` ), you can find it with a ` curl ` request. On
@@ -1032,7 +1037,7 @@ You can overwrite a blob you've created with the following, passing the old blob
1032
1037
the new blob's parameters.
1033
1038
1034
1039
``` sh
1035
- cast send --rpc-url $ETH_RPC_URL $BLOBS " overwriteBlob(string,(address,string,string,string,string,uint64,uint64))" " rzghyg4z3p6vbz5jkgc75lk64fci7kieul65o6hk6xznx7lctkmq" ' (0x0000000000000000000000000000000000000000,"cydkrslhbj4soqppzc66u6lzwxgjwgbhdlxmyeahytzqrh65qtjq","rzghyg4z3p6vbz5jkgc75lk64fci7kieul65o6hk6xznx7lctkmq","","",6,0)' --private-key $PRIVATE_KEY
1040
+ cast send --rpc-url $ETH_RPC_URL $BLOBS " overwriteBlob(string,(address,string,string,string,string,uint64,uint64,adderss ))" " rzghyg4z3p6vbz5jkgc75lk64fci7kieul65o6hk6xznx7lctkmq" ' (0x0000000000000000000000000000000000000000,"cydkrslhbj4soqppzc66u6lzwxgjwgbhdlxmyeahytzqrh65qtjq","rzghyg4z3p6vbz5jkgc75lk64fci7kieul65o6hk6xznx7lctkmq","","",6,0,0x90F79bf6EB2c4f870365E785982E1f101E93b906 )' --private-key $PRIVATE_KEY
1036
1041
```
1037
1042
1038
1043
This will emit an ` OverwriteBlob ` event and overwrite the blob in the network.
0 commit comments