@sentio/sdk 4.5.0 → 4.5.1-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/aptos/builtin/0x1.d.ts +11 -0
- package/dist/aptos/builtin/0x1.d.ts.map +1 -1
- package/dist/aptos/builtin/0x1.js +10 -1
- package/dist/aptos/builtin/0x1.js.map +1 -1
- package/dist/iota/builtin/0x2.d.ts +241 -2
- package/dist/iota/builtin/0x2.d.ts.map +1 -1
- package/dist/iota/builtin/0x2.js +766 -17
- package/dist/iota/builtin/0x2.js.map +1 -1
- package/dist/iota/builtin/0x3.d.ts +34 -64
- package/dist/iota/builtin/0x3.d.ts.map +1 -1
- package/dist/iota/builtin/0x3.js +210 -163
- package/dist/iota/builtin/0x3.js.map +1 -1
- package/dist/sui/builtin/0x2.d.ts +201 -2
- package/dist/sui/builtin/0x2.d.ts.map +1 -1
- package/dist/sui/builtin/0x2.js +574 -1
- package/dist/sui/builtin/0x2.js.map +1 -1
- package/package.json +7 -7
- package/src/aptos/abis/0x1.json +51 -1
- package/src/aptos/builtin/0x1.ts +21 -1
- package/src/iota/abis/0x2.json +2292 -1083
- package/src/iota/abis/0x3.json +229 -264
- package/src/iota/builtin/0x2.ts +1323 -78
- package/src/iota/builtin/0x3.ts +281 -258
- package/src/sui/abis/0x2.json +1216 -3
- package/src/sui/builtin/0x2.ts +918 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentio/sdk",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.1-rc.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -75,10 +75,10 @@
|
|
|
75
75
|
"@sentio/chain": "~3.4.36",
|
|
76
76
|
"@sentio/ethers-v6": "^1.0.29",
|
|
77
77
|
"@solana/kit": "^6.9.0",
|
|
78
|
-
"@typemove/aptos": "2.0.
|
|
79
|
-
"@typemove/iota": "2.0.
|
|
80
|
-
"@typemove/move": "2.0.
|
|
81
|
-
"@typemove/sui": "2.0.
|
|
78
|
+
"@typemove/aptos": "2.0.7",
|
|
79
|
+
"@typemove/iota": "2.0.7",
|
|
80
|
+
"@typemove/move": "2.0.7",
|
|
81
|
+
"@typemove/sui": "2.0.7",
|
|
82
82
|
"bs58": "^6.0.0",
|
|
83
83
|
"chalk": "^5.3.0",
|
|
84
84
|
"ethers": "^6.17.0",
|
|
@@ -97,8 +97,8 @@
|
|
|
97
97
|
"typechain": "^8.3.2",
|
|
98
98
|
"utility-types": "^3.11.0",
|
|
99
99
|
"yaml": "^2.3.4",
|
|
100
|
-
"@sentio/protos": "4.5.
|
|
101
|
-
"@sentio/runtime": "^4.5.
|
|
100
|
+
"@sentio/protos": "4.5.1-rc.1",
|
|
101
|
+
"@sentio/runtime": "^4.5.1-rc.1"
|
|
102
102
|
},
|
|
103
103
|
"peerDependencies": {
|
|
104
104
|
"tsdown": "^0.22.3"
|
package/src/aptos/abis/0x1.json
CHANGED
|
@@ -17089,7 +17089,8 @@
|
|
|
17089
17089
|
"is_view": false,
|
|
17090
17090
|
"generic_type_params": [],
|
|
17091
17091
|
"params": [
|
|
17092
|
-
"&signer"
|
|
17092
|
+
"&signer",
|
|
17093
|
+
"u64"
|
|
17093
17094
|
],
|
|
17094
17095
|
"return": []
|
|
17095
17096
|
},
|
|
@@ -17129,6 +17130,21 @@
|
|
|
17129
17130
|
"vector<u8>"
|
|
17130
17131
|
],
|
|
17131
17132
|
"return": []
|
|
17133
|
+
},
|
|
17134
|
+
{
|
|
17135
|
+
"name": "on_new_block_v2",
|
|
17136
|
+
"visibility": "friend",
|
|
17137
|
+
"is_entry": false,
|
|
17138
|
+
"is_view": false,
|
|
17139
|
+
"generic_type_params": [],
|
|
17140
|
+
"params": [
|
|
17141
|
+
"&signer",
|
|
17142
|
+
"u64",
|
|
17143
|
+
"u64",
|
|
17144
|
+
"0x1::option::Option<vector<u8>>",
|
|
17145
|
+
"0x1::option::Option<u64>"
|
|
17146
|
+
],
|
|
17147
|
+
"return": []
|
|
17132
17148
|
}
|
|
17133
17149
|
],
|
|
17134
17150
|
"structs": [
|
|
@@ -17158,6 +17174,40 @@
|
|
|
17158
17174
|
],
|
|
17159
17175
|
"variants": []
|
|
17160
17176
|
},
|
|
17177
|
+
{
|
|
17178
|
+
"name": "PerBlockDecryptionKeyV2",
|
|
17179
|
+
"is_native": false,
|
|
17180
|
+
"is_event": false,
|
|
17181
|
+
"is_enum": false,
|
|
17182
|
+
"abilities": [
|
|
17183
|
+
"drop",
|
|
17184
|
+
"key"
|
|
17185
|
+
],
|
|
17186
|
+
"generic_type_params": [],
|
|
17187
|
+
"fields": [
|
|
17188
|
+
{
|
|
17189
|
+
"name": "epoch",
|
|
17190
|
+
"type": "u64"
|
|
17191
|
+
},
|
|
17192
|
+
{
|
|
17193
|
+
"name": "block_round",
|
|
17194
|
+
"type": "u64"
|
|
17195
|
+
},
|
|
17196
|
+
{
|
|
17197
|
+
"name": "decryption_key",
|
|
17198
|
+
"type": "0x1::option::Option<vector<u8>>"
|
|
17199
|
+
},
|
|
17200
|
+
{
|
|
17201
|
+
"name": "decryption_round",
|
|
17202
|
+
"type": "0x1::option::Option<u64>"
|
|
17203
|
+
},
|
|
17204
|
+
{
|
|
17205
|
+
"name": "next_decryption_round",
|
|
17206
|
+
"type": "u64"
|
|
17207
|
+
}
|
|
17208
|
+
],
|
|
17209
|
+
"variants": []
|
|
17210
|
+
},
|
|
17161
17211
|
{
|
|
17162
17212
|
"name": "PerEpochEncryptionKey",
|
|
17163
17213
|
"is_native": false,
|