Skip to content

Commit 7daab54

Browse files
ukstvdtbuchholz
andauthored
fix: add from param to AddBlobParams (#75)
Should fix #65 --------- Co-authored-by: Dan Buchholz <[email protected]>
1 parent ea4cada commit 7daab54

File tree

5 files changed

+31
-22
lines changed

5 files changed

+31
-22
lines changed

README.md

+16-11
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,10 @@ subnet):
6767
| CreditManager | Subnet | `0xTODO` |
6868
| ValidatorGater | Subnet | `0x880126f3134EdFBa4f1a65827D5870f021bb7124` |
6969

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).
7274

7375
## Usage
7476

@@ -665,11 +667,12 @@ export BUCKETS=0x314512a8692245cf507ac6E9d0eB805EA820d9a8
665667
The account you use to create buckets should have the following:
666668

667669
- 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.
673676

674677
Creating a bucket will cost native RECALL tokens, and writing to it will cost credit.
675678

@@ -979,6 +982,7 @@ In the example below, we've already staged this data offchain and are using the
979982
string).
980983
- `ttl`: Blob time-to-live epochs. If specified as `0`, the auto-debitor maintains about one hour of
981984
credits as an ongoing commitment.
985+
- `from`: The address of the account to use for the transaction.
982986

983987
This all gets passed as a single `AddBlobParams` struct to the `addBlob` method:
984988

@@ -991,17 +995,18 @@ struct AddBlobParams {
991995
string subscriptionId; // use `""` for the default, or pass a string value
992996
uint64 size; // 6
993997
uint64 ttl; // 0 (which is interpreted as null)
998+
address from; // 0x90F79bf6EB2c4f870365E785982E1f101E93b906
994999
}
9951000
```
9961001

9971002
We then pass this as a single parameter to the `add` method:
9981003

9991004
```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
10011006
```
10021007

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,...)`.
10051010

10061011
If you're wondering where to get the `source` storage bucket's node ID (the example's
10071012
`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
10321037
the new blob's parameters.
10331038

10341039
```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
10361041
```
10371042

10381043
This will emit an `OverwriteBlob` event and overwrite the blob in the network.

src/types/BlobTypes.sol

+1
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ struct AddBlobParams {
149149
string subscriptionId;
150150
uint64 size;
151151
uint64 ttl;
152+
address from;
152153
}
153154

154155
/// @dev Blob information and status.

src/wrappers/LibBlob.sol

+2-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ library LibBlob {
317317
/// @param params The parameters for adding a blob.
318318
/// @return encoded The encoded parameters.
319319
function encodeAddBlobParams(AddBlobParams memory params) internal pure returns (bytes memory) {
320-
bytes[] memory encoded = new bytes[](7);
320+
bytes[] memory encoded = new bytes[](8);
321321
encoded[0] = params.sponsor == address(0) ? LibWasm.encodeCborNull() : params.sponsor.encodeCborAddress();
322322
encoded[1] = params.source.encodeCborBlobHashOrNodeId();
323323
encoded[2] = params.blobHash.encodeCborBlobHashOrNodeId();
@@ -328,6 +328,7 @@ library LibBlob {
328328
encoded[4] = encodeSubscriptionId(params.subscriptionId);
329329
encoded[5] = params.size.encodeCborUint64();
330330
encoded[6] = params.ttl == 0 ? LibWasm.encodeCborNull() : params.ttl.encodeCborUint64();
331+
encoded[7] = params.from.encodeCborAddress();
331332
return encoded.encodeCborArray();
332333
}
333334

test/LibBlob.t.sol

+3-2
Original file line numberDiff line numberDiff line change
@@ -127,12 +127,13 @@ contract LibBlobTest is Test {
127127
metadataHash: "",
128128
subscriptionId: "",
129129
size: 6,
130-
ttl: 0 // Null value
130+
ttl: 0, // Null value
131+
from: address(0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045) // vitalik.eth
131132
});
132133
bytes memory encoded = LibBlob.encodeAddBlobParams(params);
133134
assertEq(
134135
encoded,
135-
hex"87f69820184518b61888181a18c01848184b1875188418ce18aa18e01838181c1833187218c118b3187118a418a818ea18e9184215189b18aa189a18e618d40e18e49820188e184c187c181b189918db18fd185018e718a91851188518fe18ad185e18e11844188f18a90418a218fd18d7187818ea18f518f218db18fd1862189a189998200000000000000000000000000000000000000000000000000000000000000000a165696e6e65726006f6"
136+
hex"88f69820184518b61888181a18c01848184b1875188418ce18aa18e01838181c1833187218c118b3187118a418a818ea18e9184215189b18aa189a18e618d40e18e49820188e184c187c181b189918db18fd185018e718a91851188518fe18ad185e18e11844188f18a90418a218fd18d7187818ea18f518f218db18fd1862189a189998200000000000000000000000000000000000000000000000000000000000000000a165696e6e65726006f656040ad8da6bf26964af9d7eed9e03e53415d37aa96045"
136137
);
137138
}
138139

test/scripts/wrapper_integration_test.sh

+9-8
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ PRIVATE_KEY="${PRIVATE_KEY:-0x7c852118294e51e653712a81e05800f419141751be58f605c3
1212
OBJECT_API_URL="${OBJECT_API_URL:-http://localhost:8001}"
1313
EVM_ADDRESS=$(cast wallet address $PRIVATE_KEY)
1414
SOURCE=$(curl -X GET $OBJECT_API_URL/v1/node | jq '.node_id' | tr -d '"')
15+
ZERO_ADDR="0x0000000000000000000000000000000000000000"
1516
DIVIDER=$'\n============================\n'
1617

1718
echo "Running tests with environment:"
@@ -28,8 +29,8 @@ echo "hello" > $TEMP_FILE
2829
OBJECT_KEY="hello/world"
2930
BUCKET_ADDR=$(RECALL_PRIVATE_KEY=$PRIVATE_KEY RECALL_NETWORK=localnet recall bucket create | jq '.address' | tr -d '"')
3031
create_object_response=$(RECALL_PRIVATE_KEY=$PRIVATE_KEY RECALL_NETWORK=localnet recall bu add --address $BUCKET_ADDR --key $OBJECT_KEY $TEMP_FILE)
31-
SIZE=$(echo $create_object_response | jq '.object.size')
32-
BLOB_HASH=$(echo $create_object_response | jq '.object.hash' | tr -d '"')
32+
SIZE=6
33+
BLOB_HASH="rzghyg4z3p6vbz5jkgc75lk64fci7kieul65o6hk6xznx7lctkmq"
3334

3435
echo -e "$DIVIDER"
3536
echo "Running BlobManager integration tests..."
@@ -47,8 +48,8 @@ echo "Using BlobManager: $BLOBS"
4748
# Test addBlob
4849
echo
4950
echo "Testing addBlob..."
50-
output=$(cast send --rpc-url $ETH_RPC_URL $BLOBS "addBlob((address,string,string,string,string,uint64,uint64))" \
51-
"(0x0000000000000000000000000000000000000000,$SOURCE,$BLOB_HASH,\"\",\"\",$SIZE,0)" \
51+
output=$(cast send --rpc-url $ETH_RPC_URL $BLOBS "addBlob((address,string,string,string,string,uint64,uint64,address))" \
52+
"($ZERO_ADDR,$SOURCE,$BLOB_HASH,\"\",\"\",$SIZE,0,$EVM_ADDRESS)" \
5253
--private-key $PRIVATE_KEY)
5354
if [ "$output" = "0x" ]; then
5455
echo "addBlob failed"
@@ -71,7 +72,7 @@ echo "Output: $DECODED_BLOB"
7172
echo
7273
echo "Testing getBlobStatus..."
7374
output=$(cast call --rpc-url $ETH_RPC_URL $BLOBS "getBlobStatus(address,string,string)" \
74-
"0x0000000000000000000000000000000000000000" "$BLOB_HASH" "")
75+
"$ZERO_ADDR" "$BLOB_HASH" "")
7576
if [ "$output" = "0x" ]; then
7677
echo "getBlobStatus failed"
7778
exit 1
@@ -160,9 +161,9 @@ echo "Output: $DECODED_SUBNET_STATS"
160161
# Test overwriteBlob
161162
echo
162163
echo "Testing overwriteBlob..."
163-
output=$(cast send --rpc-url $ETH_RPC_URL $BLOBS "overwriteBlob(string,(address,string,string,string,string,uint64,uint64))" \
164+
output=$(cast send --rpc-url $ETH_RPC_URL $BLOBS "overwriteBlob(string,(address,string,string,string,string,uint64,uint64,address))" \
164165
"$BLOB_HASH" \
165-
"(0x0000000000000000000000000000000000000000,$SOURCE,$BLOB_HASH,\"\",\"\",$SIZE,0)" \
166+
"($ZERO_ADDR,$SOURCE,$BLOB_HASH,\"\",\"\",$SIZE,0,$EVM_ADDRESS)" \
166167
--private-key $PRIVATE_KEY)
167168
if [ "$output" = "0x" ]; then
168169
echo "overwriteBlob failed"
@@ -174,7 +175,7 @@ echo "Output: $output"
174175
echo
175176
echo "Testing deleteBlob..."
176177
output=$(cast send --rpc-url $ETH_RPC_URL $BLOBS "deleteBlob(address,string,string)" \
177-
"0x0000000000000000000000000000000000000000" "$BLOB_HASH" "" \
178+
"$ZERO_ADDR" "$BLOB_HASH" "" \
178179
--private-key $PRIVATE_KEY)
179180
if [ "$output" = "0x" ]; then
180181
echo "deleteBlob failed"

0 commit comments

Comments
 (0)