@layerzerolabs/lz-aptos-sdk-v2 3.0.2-initia.0 → 3.0.2-initia.2
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/CHANGELOG.md +30 -0
- package/README.md +277 -10
- package/deployments/aptos-sandbox-local/blocked_msglib.json +1 -1
- package/deployments/aptos-sandbox-local/counter.json +1 -1
- package/deployments/aptos-sandbox-local/dvn.json +2 -2
- package/deployments/aptos-sandbox-local/dvn_fee_lib_0.json +1 -1
- package/deployments/aptos-sandbox-local/dvn_fee_lib_1.json +1 -1
- package/deployments/aptos-sandbox-local/dvn_fee_lib_router_0.json +1 -1
- package/deployments/aptos-sandbox-local/dvn_fee_lib_router_1.json +1 -1
- package/deployments/aptos-sandbox-local/endpoint_v2.json +1 -1
- package/deployments/aptos-sandbox-local/endpoint_v2_common.json +1 -1
- package/deployments/aptos-sandbox-local/executor.json +1 -1
- package/deployments/aptos-sandbox-local/executor_fee_lib_0.json +1 -1
- package/deployments/aptos-sandbox-local/executor_fee_lib_1.json +1 -1
- package/deployments/aptos-sandbox-local/executor_fee_lib_router_0.json +1 -1
- package/deployments/aptos-sandbox-local/executor_fee_lib_router_1.json +1 -1
- package/deployments/aptos-sandbox-local/layerzero_views.json +1 -1
- package/deployments/aptos-sandbox-local/msglib_3.json +1 -1
- package/deployments/aptos-sandbox-local/msglib_4.json +1 -1
- package/deployments/aptos-sandbox-local/msglib_types.json +1 -1
- package/deployments/aptos-sandbox-local/oft-TokenOne.json +2 -2
- package/deployments/aptos-sandbox-local/oft-TokenThree.json +2 -2
- package/deployments/aptos-sandbox-local/oft-TokenTwo.json +2 -2
- package/deployments/aptos-sandbox-local/oft_common.json +1 -1
- package/deployments/aptos-sandbox-local/price_feed_module_0.json +1 -1
- package/deployments/aptos-sandbox-local/price_feed_module_1.json +1 -1
- package/deployments/aptos-sandbox-local/price_feed_module_2.json +1 -1
- package/deployments/aptos-sandbox-local/price_feed_router_0.json +1 -1
- package/deployments/aptos-sandbox-local/price_feed_router_1.json +1 -1
- package/deployments/aptos-sandbox-local/router_node_0.json +1 -1
- package/deployments/aptos-sandbox-local/router_node_1.json +1 -1
- package/deployments/aptos-sandbox-local/simple_msglib.json +1 -1
- package/deployments/aptos-sandbox-local/treasury.json +1 -1
- package/deployments/aptos-sandbox-local/uln_302.json +1 -1
- package/deployments/aptos-sandbox-local/worker_common.json +2 -2
- package/dist/index.cjs +138 -125
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +177 -14
- package/dist/index.d.ts +177 -14
- package/dist/index.mjs +139 -126
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -13
- package/deployments/aptos-sandbox-local/oft-TokenFour.json +0 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @layerzerolabs/lz-aptos-sdk-v2
|
|
2
2
|
|
|
3
|
+
## 3.0.2-initia.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Build new initia,aptos,bsc,movement snapshot images
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @layerzerolabs/lz-corekit-aptos@3.0.2-initia.2
|
|
10
|
+
- @layerzerolabs/lz-core@3.0.2-initia.2
|
|
11
|
+
- @layerzerolabs/lz-definitions@3.0.2-initia.2
|
|
12
|
+
- @layerzerolabs/lz-serdes@3.0.2-initia.2
|
|
13
|
+
- @layerzerolabs/lz-utilities@3.0.2-initia.2
|
|
14
|
+
- @layerzerolabs/lz-movevm-sdk-v2@3.0.2-initia.2
|
|
15
|
+
- @layerzerolabs/lz-v2-utilities@3.0.2-initia.2
|
|
16
|
+
- @layerzerolabs/move-definitions@3.0.2-initia.2
|
|
17
|
+
|
|
18
|
+
## 3.0.2-initia.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Build new Initia snapshot images
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @layerzerolabs/lz-corekit-aptos@3.0.2-initia.1
|
|
25
|
+
- @layerzerolabs/lz-core@3.0.2-initia.1
|
|
26
|
+
- @layerzerolabs/lz-definitions@3.0.2-initia.1
|
|
27
|
+
- @layerzerolabs/lz-serdes@3.0.2-initia.1
|
|
28
|
+
- @layerzerolabs/lz-utilities@3.0.2-initia.1
|
|
29
|
+
- @layerzerolabs/lz-movevm-sdk-v2@3.0.2-initia.1
|
|
30
|
+
- @layerzerolabs/lz-v2-utilities@3.0.2-initia.1
|
|
31
|
+
- @layerzerolabs/move-definitions@3.0.2-initia.1
|
|
32
|
+
|
|
3
33
|
## 3.0.2-initia.0
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,21 +1,288 @@
|
|
|
1
1
|
# Aptos-SDK
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The Aptos SDK is a comprehensive SDK designed to interact with the Aptos blockchain. It provides a set of utilities and modules to facilitate the development and integration of applications with the Aptos blockchain.
|
|
4
4
|
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- **Price Feed Management**: Interact with price feeds, set and get prices.
|
|
8
|
+
- **ULN Configuration**: Manage ULN configurations for sending and receiving messages.
|
|
9
|
+
- **Executor Configuration**: Set and get executor configurations.
|
|
10
|
+
- **Worker Management**: Manage worker configurations and price feeds.
|
|
11
|
+
- **View Functions**: Execute view functions to retrieve data from the blockchain.
|
|
12
|
+
- **Transaction Management**: Build, sign, and send transactions.
|
|
13
|
+
- **Counter Management**: Interact with Counter, getCount, quote and send increment transactions.
|
|
14
|
+
- **OFT Management**: Interact with OFT, getBalance, quote and send transactions.
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
To install the Aptos SDK, you can use npm or yarn:
|
|
19
|
+
|
|
20
|
+
```sh
|
|
21
|
+
npm install @layerzerolabs/lz-aptos-sdk-v2
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
or
|
|
25
|
+
|
|
26
|
+
```sh
|
|
27
|
+
yarn add @layerzerolabs/lz-aptos-sdk-v2
|
|
5
28
|
```
|
|
6
|
-
import { Aptos, AptosConfig } from '@aptos-labs/ts-sdk'
|
|
7
|
-
import { SDK as AptosSDK } from '@layerzerolabs/lz-aptos-sdk-v2'
|
|
8
|
-
import { Oft } from '@layerzerolabs/lz-movevm-sdk-v2'
|
|
9
29
|
|
|
30
|
+
## Usage
|
|
31
|
+
|
|
32
|
+
### Counter SDK Usage
|
|
33
|
+
|
|
34
|
+
#### Initialization
|
|
35
|
+
|
|
36
|
+
```typescript
|
|
37
|
+
import { Stage } from "@layerzerolabs/lz-definitions";
|
|
38
|
+
import { SDK as AptosSDK } from "@layerzerolabs/lz-aptos-sdk-v2";
|
|
39
|
+
import { Aptos, AptosConfig } from "@aptos-labs/ts-sdk";
|
|
40
|
+
import { Counter, Endpoint } from "@layerzerolabs/lz-movevm-sdk-v2";
|
|
41
|
+
|
|
42
|
+
// url is the aptos chain full node url
|
|
43
|
+
const sdk = new AptosSDK({
|
|
44
|
+
stage: Stage.SANDBOX,
|
|
45
|
+
provider: new Aptos(new AptosConfig({ fullnode: url })),
|
|
46
|
+
}).LayerzeroModule;
|
|
47
|
+
const counter = sdk.Counter;
|
|
48
|
+
const endpoint = sdk.Endpoint;
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
#### getCount
|
|
52
|
+
|
|
53
|
+
```typescript
|
|
54
|
+
const count = await counter.getCount();
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
#### send increment
|
|
58
|
+
|
|
59
|
+
```typescript
|
|
60
|
+
import { SandboxV2EndpointId } from '@layerzerolabs/lz-definitions'
|
|
61
|
+
import { Options } from '@layerzerolabs/lz-v2-utilities'
|
|
62
|
+
import { MnemonicAndPath } from '@layerzerolabs/move-definitions'
|
|
63
|
+
|
|
64
|
+
const counter = sdk.Counter
|
|
65
|
+
const endpoint = sdk.Endpoint
|
|
66
|
+
const sender: MnemonicAndPath = {
|
|
67
|
+
path: "m/44'/637'/0'/0'/26'",
|
|
68
|
+
mnemonic: 'test test test test test test test test test test test junk',
|
|
69
|
+
}
|
|
70
|
+
const eid = SandboxV2EndpointId.APTOS_V2_SANDBOX
|
|
71
|
+
const msgType = 1 // (VANILLA=1, COMPOSED=2, ABA=3, COMPOSED_ABA=4)
|
|
72
|
+
const value = 0 // native drop amount
|
|
73
|
+
const executorOptions = getExecutorLzReceiveOptions(msgType, value)
|
|
74
|
+
const [feeInNative] = await quote(eid, msgType, value)
|
|
75
|
+
const response = await this.counter.send(
|
|
76
|
+
sender,
|
|
77
|
+
eid,
|
|
78
|
+
msgType,
|
|
79
|
+
BigInt(feeInNative),
|
|
80
|
+
executorOptions.toBytes()
|
|
81
|
+
)
|
|
82
|
+
const txHash = response.hash // get send increment transaction hash.
|
|
83
|
+
|
|
84
|
+
// @return (native_fee, zro_fee)
|
|
85
|
+
async quote(
|
|
86
|
+
eid: number,
|
|
87
|
+
msgType: number,
|
|
88
|
+
value: string | number = 0
|
|
89
|
+
): Promise<[number, number]> {
|
|
90
|
+
const receiver = await counter.getPeer(remoteEid)
|
|
91
|
+
if (receiver === '') {
|
|
92
|
+
throw new Error(`Aptos Counter Peer not set for ${eid}`)
|
|
93
|
+
}
|
|
94
|
+
const message = Uint8Array.from([1, 2, 3, 4, 5])
|
|
95
|
+
return endpoint.quoteView(
|
|
96
|
+
counterAddress,
|
|
97
|
+
eid,
|
|
98
|
+
receiver,
|
|
99
|
+
message,
|
|
100
|
+
getExecutorLzReceiveOptions(msgType, value).toBytes(),
|
|
101
|
+
false // whether pay in LzToken
|
|
102
|
+
)
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
getExecutorLzReceiveOptions(msgType: number, value: string | number = 0): Options {
|
|
106
|
+
const options = Options.newOptions()
|
|
107
|
+
if (msgType === 1) { // VANILLA
|
|
108
|
+
// A -> B
|
|
109
|
+
options.addExecutorLzReceiveOption(300000, value)
|
|
110
|
+
} else if (msgType === 2) { // COMPOSED
|
|
111
|
+
// A -> B1 -> B2
|
|
112
|
+
options.addExecutorLzReceiveOption(200000, value).addExecutorComposeOption(0, 200000, 0)
|
|
113
|
+
} else if (msgType === 3) { // ABA
|
|
114
|
+
// A -> B -> A
|
|
115
|
+
options.addExecutorLzReceiveOption(500000, 20000)
|
|
116
|
+
} else if (msgType === 4) { // COMPOSED_ABA
|
|
117
|
+
// A -> B1 -> B2 -> A
|
|
118
|
+
options.addExecutorLzReceiveOption(200000, value).addExecutorComposeOption(0, 500000, '200000000000000')
|
|
119
|
+
}
|
|
120
|
+
return options
|
|
121
|
+
}
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
### OFT SDK Usage
|
|
125
|
+
|
|
126
|
+
#### Initialization
|
|
127
|
+
|
|
128
|
+
```typescript
|
|
129
|
+
import { SDK as AptosSDK } from "@layerzerolabs/lz-aptos-sdk-v2";
|
|
130
|
+
import { Aptos, AptosConfig } from "@aptos-labs/ts-sdk";
|
|
131
|
+
import { Oft } from "@layerzerolabs/lz-movevm-sdk-v2";
|
|
132
|
+
|
|
133
|
+
// your oft contract address.
|
|
134
|
+
const address = "0x123";
|
|
10
135
|
// url is the aptos chain full node url
|
|
11
136
|
const sdk = new AptosSDK({
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
137
|
+
stage: Stage.SANDBOX,
|
|
138
|
+
provider: new Aptos(new AptosConfig({ fullnode: url })),
|
|
139
|
+
accounts: {
|
|
140
|
+
oft: address,
|
|
141
|
+
},
|
|
142
|
+
});
|
|
143
|
+
// false means native type, true is adapter type.
|
|
144
|
+
const oft = new Oft(sdk, false);
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
#### get balance
|
|
148
|
+
|
|
149
|
+
```typescript
|
|
150
|
+
import { MnemonicAndPath } from '@layerzerolabs/move-definitions'
|
|
151
|
+
|
|
152
|
+
const address = '0x123'
|
|
153
|
+
const sdk = ...
|
|
17
154
|
// false means native type, true is adapter type.
|
|
18
155
|
const oft = new Oft(sdk, false)
|
|
156
|
+
const sender: MnemonicAndPath = {
|
|
157
|
+
path: "m/44'/637'/0'/0'/45'",
|
|
158
|
+
mnemonic: 'test test test test test test test test test test test junk',
|
|
159
|
+
}
|
|
160
|
+
const originalBalance = await oft.balanceOf(address ?? sdk.accountToAddress(sender))
|
|
161
|
+
const metadata = await oft.metadata()
|
|
162
|
+
const decimals = metadata.decimals
|
|
163
|
+
// convert balance into a human-readable string representation
|
|
164
|
+
const balance = (BigInt(originalBalance) / BigInt(10) ** BigInt(decimals)).toString()
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
#### quote oft
|
|
168
|
+
|
|
169
|
+
Quote the OFT for a particular send without sending
|
|
170
|
+
|
|
19
171
|
```
|
|
172
|
+
@return (
|
|
173
|
+
oft_limit: The minimum and maximum limits that can be sent to the recipient
|
|
174
|
+
fees: The fees that will be applied to the amount sent
|
|
175
|
+
amount_sent_ld: The amount that would be debited from the sender in local decimals
|
|
176
|
+
amount_received_ld: The amount that would be received by the recipient in local decimals
|
|
177
|
+
)
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
```typescript
|
|
181
|
+
import { SandboxV2EndpointId } from '@layerzerolabs/lz-definitions'
|
|
182
|
+
import { addressToBytes32 } from '@layerzerolabs/lz-v2-utilities'
|
|
183
|
+
import { MnemonicAndPath } from '@layerzerolabs/move-definitions'
|
|
20
184
|
|
|
21
|
-
|
|
185
|
+
const sdk = ...
|
|
186
|
+
// false means native type, true is adapter type.
|
|
187
|
+
const oft = new Oft(sdk, false)
|
|
188
|
+
const amountLD = 100
|
|
189
|
+
const dstEid = SandboxV2EndpointId.APTOS_V2_SANDBOX
|
|
190
|
+
const payInLzToken = false
|
|
191
|
+
const sender: MnemonicAndPath = {
|
|
192
|
+
path: "m/44'/637'/0'/0'/45'",
|
|
193
|
+
mnemonic: 'test test test test test test test test test test test junk',
|
|
194
|
+
}
|
|
195
|
+
const userSender = sdk.accountToAddress(sender)
|
|
196
|
+
const toBytes32 = addressToBytes32(userSender)
|
|
197
|
+
const minAmountLD = (BigInt(amountLD) * 9n) / 10n // 10% tolerance
|
|
198
|
+
const options = Uint8Array.from([])
|
|
199
|
+
const composeMessage = Uint8Array.from([])
|
|
200
|
+
const [oftLimit, oftFeeDetails, amountSentLD, amountReceivedLD] = await oft.quoteOft(
|
|
201
|
+
dstEid,
|
|
202
|
+
toBytes32,
|
|
203
|
+
BigInt(amountLD),
|
|
204
|
+
minAmountLD,
|
|
205
|
+
options,
|
|
206
|
+
composeMessage
|
|
207
|
+
)
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
#### quote send
|
|
211
|
+
|
|
212
|
+
Quote the network fees for a particular send
|
|
213
|
+
|
|
214
|
+
@return (native_fee, zro_fee)
|
|
215
|
+
|
|
216
|
+
```typescript
|
|
217
|
+
import { SandboxV2EndpointId } from '@layerzerolabs/lz-definitions'
|
|
218
|
+
import { addressToBytes32 } from '@layerzerolabs/lz-v2-utilities'
|
|
219
|
+
import { MnemonicAndPath } from '@layerzerolabs/move-definitions'
|
|
220
|
+
|
|
221
|
+
const sdk = ...
|
|
222
|
+
// false means native type, true is adapter type.
|
|
223
|
+
const oft = new Oft(sdk, false)
|
|
224
|
+
const amountLD = 100
|
|
225
|
+
const dstEid = SandboxV2EndpointId.APTOS_V2_SANDBOX
|
|
226
|
+
const payInLzToken = false
|
|
227
|
+
const sender: MnemonicAndPath = {
|
|
228
|
+
path: "m/44'/637'/0'/0'/45'",
|
|
229
|
+
mnemonic: 'test test test test test test test test test test test junk',
|
|
230
|
+
}
|
|
231
|
+
const userSender = sdk.accountToAddress(sender)
|
|
232
|
+
const toBytes32 = addressToBytes32(userSender)
|
|
233
|
+
const minAmountLD = (BigInt(amountLD) * 9n) / 10n // 10% tolerance
|
|
234
|
+
const options = Uint8Array.from([])
|
|
235
|
+
const composeMessage = Uint8Array.from([])
|
|
236
|
+
const [nativeFee, lzTokenFee] = await oft.quoteSend(
|
|
237
|
+
userSender,
|
|
238
|
+
dstEid,
|
|
239
|
+
toBytes32,
|
|
240
|
+
BigInt(amountLD),
|
|
241
|
+
minAmountLD,
|
|
242
|
+
payInLzToken,
|
|
243
|
+
options,
|
|
244
|
+
composeMessage
|
|
245
|
+
)
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
#### send
|
|
249
|
+
|
|
250
|
+
```typescript
|
|
251
|
+
const sdk = ...
|
|
252
|
+
// false means native type, true is adapter type.
|
|
253
|
+
const oft = new Oft(sdk, false)
|
|
254
|
+
const amountLD = 100
|
|
255
|
+
const dstEid = SandboxV2EndpointId.APTOS_V2_SANDBOX
|
|
256
|
+
const payInLzToken = false
|
|
257
|
+
const sender: MnemonicAndPath = {
|
|
258
|
+
path: "m/44'/637'/0'/0'/45'",
|
|
259
|
+
mnemonic: 'test test test test test test test test test test test junk',
|
|
260
|
+
}
|
|
261
|
+
const userSender = sdk.accountToAddress(sender)
|
|
262
|
+
const toBytes32 = addressToBytes32(userSender)
|
|
263
|
+
const minAmountLD = (BigInt(amountLD) * 9n) / 10n // 10% tolerance
|
|
264
|
+
const options = Uint8Array.from([])
|
|
265
|
+
const composeMessage = Uint8Array.from([])
|
|
266
|
+
const [nativeFee, lzTokenFee] = await oft.quoteSend(
|
|
267
|
+
userSender,
|
|
268
|
+
dstEid,
|
|
269
|
+
toBytes32,
|
|
270
|
+
BigInt(amountLD),
|
|
271
|
+
minAmountLD,
|
|
272
|
+
payInLzToken,
|
|
273
|
+
options,
|
|
274
|
+
composeMessage
|
|
275
|
+
)
|
|
276
|
+
const response = await oft.send(
|
|
277
|
+
sender,
|
|
278
|
+
dstEid,
|
|
279
|
+
toBytes32,
|
|
280
|
+
BigInt(amountLD),
|
|
281
|
+
minAmountLD,
|
|
282
|
+
BigInt(nativeFee),
|
|
283
|
+
BigInt(lzTokenFee),
|
|
284
|
+
options,
|
|
285
|
+
composeMessage
|
|
286
|
+
)
|
|
287
|
+
const txHash = response.hash // get send transaction hash.
|
|
288
|
+
```
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "eb7d4229f462b66a9e813a43852e864e4c85639caf7c02ddbd82178cd641d09b",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x09933fe02abf44385ea1fa4e0cc3b552183c0adec3ba2f260467aa7364378e69"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "c2335aa96957d6141158388906873d014ef85c0184488a247390c4983e8fe2e3",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x3339095b0fb06e03bef1b451e55e9ce3bc63c13fd256f5f2dfc04275a243b9de"
|
|
11
11
|
}
|
|
@@ -6,6 +6,6 @@
|
|
|
6
6
|
"compatibleVersions": [
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
|
-
"bytecodeHash": "
|
|
10
|
-
"transactionHash": "
|
|
9
|
+
"bytecodeHash": "8b645e31c1cc9dadde66ca7cdea2ae5e5cc51c63d14344c0389bf1b5ea92a302",
|
|
10
|
+
"transactionHash": "0xcf165fa95b431569b3c04f78cda552112f6ada0c1832d8831301f1550937a904"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "d97ab3f51c1c16e8aa84a9d1a2c683dd0722d8d707cae4604dcc7e61577386aa",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x13e2909c35ca3c4789d158efb6c2e01a7497e2346c5f91e75dcae299e3cfc25e"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "a4f8f33ff9b0e3e5b41a08cd00980878411d70f5176b9e2224b3facd07cf7b05",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x2578effa61c4c3443c0909aab61d3f66c5a8bcb693ed7a9c347a1247cfa472fc"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "d70399e9f5d0706b9887990048531106a4ac6658f7204bb4bad59cf3e6931f3c",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0xd1240d43727cbf96e66816d6dbf80cc8a662de986e74b9fe1ef41f242a6b68df"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "a8d7103fb3f4131e33380938867d2a0e633cf493947e958469f1e251a25bd21d",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x73f1be7570c56eb8bc138c0fc0873946491ff9f66a0584f3f1507bf3d9c56b79"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "19bd218f826c6f10f58e87f04af0b9b55862368304d0deb2106b0e3c43dce3c7",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x4265b0d70003dac950420f03d4c5925e196eee29a4d38aa6b344f0eb509c041f"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "8341c36ca4899f91f60d421ded51a1accaa3f5f600cc41977c0c4a04fb10f643",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x1ce9538e1d1b1ad39f01c47d644edb5719fb0b3f8f788b4679619db79e779bd9"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "5f67f29f8f4adc113098c0cd08c7f7c18c48254b15d0166008ff8822e48c9da2",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0xc64f806c3d9ef2da1be268d6050f97453045c4f8abaf26f48e864bea9c648461"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "b89f994810dab8a9fadbfb8c4fb710d06ece6575a5bf48f4d57cb06a7d870af7",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0xa9243c9565be712f82562ae45bdd37eec3989f03248c1e9646d11f8dc55a6bbf"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "fba616923b19aceb3f143520e43b84703227cd5e6b763328adf4b68aee3edee4",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x1ad110d6f1d17f436d52b2b297345c364c896a0d4094bc83661cc8ebb0b45e79"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "a8947c5c6cfc438f8fce5023f99bb1cf8988c8efd5656852d52443341f05665b",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0xa1bf1bcd0d4df552b1030660dad4a1a6d293af51c94bb806b909b12f43c3baa4"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "ded7caef375406b4a92663ef8fb8a520eb8e7adf7a844cbd8255f841da3876db",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x753cc2af260c3b5542d53d8ce0cbc3c0589ca9070479c957f349144b98fb2246"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "d48576f9eb6100e3e15dbc61d901bda360f33a764f648245a97e457e2abf2e91",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x2aa1b13be73c5f2ff7ae8f3117da4954a26fa2f6c81cdb3a1e180af80bad6314"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "f561c0446f27726d5eae262e1f6d1d5096ea2a3f5f5a58c89d5e8fe1883285f9",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0xbc78a367443366cd34b2ba181c9a4949b890174355b71e192b54854f8d6927d4"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "d5811c95313f2ea3dd3797f3553cf2b0fcc4bcb89e510a69e0306606cb0a8fe9",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0xc00dab2a9a779d9806c2354754aea20d854de4688d297f8e2a767827d5c3de8d"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "7094e63ae61dfb61c1df71028f13dc69cfd10c1cfce3238374d23845949b9864",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0xcc2dcc98272f2b0f1bb2c83d11e900966a3be7398e0104e95db9d10d331dcfe9"
|
|
11
11
|
}
|
|
@@ -6,6 +6,6 @@
|
|
|
6
6
|
"compatibleVersions": [
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
|
-
"bytecodeHash": "
|
|
10
|
-
"transactionHash": "
|
|
9
|
+
"bytecodeHash": "0a67b7807a674d4c3eb34e3f91e359086d49cb7cd7bdfabe63941ee4b9c42663",
|
|
10
|
+
"transactionHash": "0x958c07de289a588926de8394d9b4c9ecc2854a60134b4d21cc31343d74b4be66"
|
|
11
11
|
}
|
|
@@ -6,6 +6,6 @@
|
|
|
6
6
|
"compatibleVersions": [
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
|
-
"bytecodeHash": "
|
|
10
|
-
"transactionHash": "
|
|
9
|
+
"bytecodeHash": "7705b750b53c9c4e360521e2d4f4403e3cb62f502b250b401730385852d55497",
|
|
10
|
+
"transactionHash": "0x0ac46893967367292f630cc1526e55e501be42247c8dd320986b780e4c59560f"
|
|
11
11
|
}
|
|
@@ -6,6 +6,6 @@
|
|
|
6
6
|
"compatibleVersions": [
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
|
-
"bytecodeHash": "
|
|
10
|
-
"transactionHash": "
|
|
9
|
+
"bytecodeHash": "f96281f25db4dd806dfd2e9ee73fc401b2a30119156dec8ed4afa1f3129fdd20",
|
|
10
|
+
"transactionHash": "0x4ac13a3dc29d54323d5e8820c2ae4068621535cc66b63c96d037b35e24e57b62"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "8a38727ea446cd9e0557d503a00de25c149277d051267076a8963a7cc48cf821",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0xf838e3be6a0891d6ed010757502f953e790fbbe5df88cb7f600c2146571343eb"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "dcecf1920316b76847dd574f3d642191ea1a0bb97af8cf507b06abe426917c81",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x45b3b2b5e79622cd098a58c7e391532be26ceb2aeadc11a2a7c872bbded2d774"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "4dfe62172e1f10fac951bf7ff1477f2a69ebf81c63d4074bfa31ae2b0b35ce98",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0xfd72cf3c8b7c68ce1c5316650f6248c7749778e9a15d3123e7f646da68d84daf"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "445479944ecb4c019274f28ee577c77c42df9bfdb09880ead75161dba45bc899",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x730cd6a3c1091438f540634f07d097741adcf452b1abd7631ae9355017498c91"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "b695588e8dac5c34b1d53376fa76d182fbd1eff281e32dcf36803c07b7374757",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0xb5388339873f31c2619863f1fe79296a0a4d0ee8b686f1633c4d54cbc1aa30bf"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "fbd4b078d51b390834feadf24395b5391a9521bbc0b15c319d48dbe0734d9d40",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0xe867b74837f3ff082cd000b2f2feaea09fc59ac1c8281a3a2cbc6a8dc74c66c9"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "f16ea6697c1ab9f4374170df3e062e9df6b4e945c1a0404df99e0295797f2734",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x57d3d54cd6141c533f7ff21a5cbef439ee23c031e4ea9db02c16f9d77c17876f"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "76e2c0453844a204f79338ac8685442456142234097a6c5942856cd8d1f986e3",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0xf1aec95c06ab7d1d5e8c3dcc24344ab352df916a924a8edd4b9c6a39bace5466"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "1564abba3b617b430c86eee4aa0ff33886d5c6078cb0478d0d40c93065bf3aea",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x8099eacd8d841fe9a41696d4a666f8d0773744446bf94adcc1f45dc5591eba26"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "72a536cc6e38a6030f4d694921f3be429100c5112cac93bfefe4d09012e861a1",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0x983065faf6a9802e6965b4f3e7a3c7963889dabdc7db7d49737617fad07cd058"
|
|
11
11
|
}
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
9
|
"bytecodeHash": "b3c5b566c732166321d3ac98dc08f6d55dda73fe2fad0ef63a240f1317b67716",
|
|
10
|
-
"transactionHash": "
|
|
10
|
+
"transactionHash": "0xec346d54598a9cf015c4cdd51edbe304997969ce112a322d976f49af6ba59353"
|
|
11
11
|
}
|
|
@@ -6,6 +6,6 @@
|
|
|
6
6
|
"compatibleVersions": [
|
|
7
7
|
"v2"
|
|
8
8
|
],
|
|
9
|
-
"bytecodeHash": "
|
|
10
|
-
"transactionHash": "
|
|
9
|
+
"bytecodeHash": "d15cf5020707701537407d4bf7737a9e5b0aafdc6056745b760b711fc41e5f95",
|
|
10
|
+
"transactionHash": "0xf376b0e0c82bec0e95b607e327d492509147d6b60a424d85ecf60188be45e835"
|
|
11
11
|
}
|