@ton-agent-kit/plugin-escrow 1.0.1 → 1.0.3
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/package.json
CHANGED
|
@@ -1,17 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ton-agent-kit/plugin-escrow",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Escrow plugin for TON Agent Kit — create, fund, release, and refund escrow deals",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
7
|
-
"scripts": {
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsc"
|
|
9
|
+
},
|
|
8
10
|
"dependencies": {
|
|
9
11
|
"@ton-agent-kit/core": "^1.0.0",
|
|
10
12
|
"@ton/ton": "^16.2.0",
|
|
11
13
|
"@ton/core": "^0.63.1"
|
|
12
14
|
},
|
|
13
|
-
"
|
|
15
|
+
"peerDependencies": {
|
|
16
|
+
"zod": ">=4.0.0"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"ton",
|
|
20
|
+
"blockchain",
|
|
21
|
+
"ai",
|
|
22
|
+
"agent",
|
|
23
|
+
"sdk"
|
|
24
|
+
],
|
|
14
25
|
"license": "MIT",
|
|
15
|
-
"publishConfig": {
|
|
16
|
-
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/Andy00L/ton-agent-kit.git"
|
|
32
|
+
}
|
|
17
33
|
}
|
|
@@ -1186,7 +1186,7 @@ function initEscrow_init_args(src: Escrow_init_args) {
|
|
|
1186
1186
|
}
|
|
1187
1187
|
|
|
1188
1188
|
async function Escrow_init(depositor: Address, beneficiary: Address, arbiter: Address, deadline: bigint) {
|
|
1189
|
-
const __code = Cell.fromHex('
|
|
1189
|
+
const __code = Cell.fromHex('b5ee9c7241020e0100031000022cff008e88f4a413f4bcf2c80bed53208e8130e1ed43d90106020378e00204017bb96c0ed44d0d200018e12fa40fa40fa40fa00d31fd200d20055606c178e1afa40fa40fa40d401d0810101d7003014433004d1550270017070e2db3c6c718030008f8276f10017bbbed2ed44d0d200018e12fa40fa40fa40fa00d31fd200d20055606c178e1afa40fa40fa40d401d0810101d7003014433004d1550270017070e2db3c6c77805000e5476545476542604f201d072d721d200d200fa4021103450666f04f86102f862ed44d0d200018e12fa40fa40fa40fa00d31fd200d20055606c178e1afa40fa40fa40d401d0810101d7003014433004d1550270017070e208925f08e006d70d1ff2e082218210f8aa2f92bae3022182101856d189bae30221821083fb1615bae3020107080a0d00705b81247e26b39227b39170e2f2f4f8416f24135f0312a010461035443302c87f01ca0055605067ce14ce12ce01fa02cb1fca00ca00c9ed5402ea5bf8428200a5c35316c70592317f945114c705e2f2f481165906b39226b39170e216f2f48200a1c721c200f2f47f70810082708827553010246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb0010461035440302090c002600000000457363726f772072656c656173656402f85bf842f82322bc8126195327c70592327f945125c705e292307fdef2f481165926b39207b3923770e217f2f48200a1c721c200f2f47f70810082708828553010246d50436d03c8cf8580ca00cf8440ce01fa028069cf40025c6e016eb0935bcf819d58cf8680cf8480f400f400cf81e2f400c901fb001046103544300b0c002600000000457363726f7720726566756e6465640034c87f01ca0055605067ce14ce12ce01fa02cb1fca00ca00c9ed5400ca8210946a98b6ba8e56d33f30c8018210aff90f5758cb1fcb3fc91057104610354430f84270705003804201503304c8cf8580ca00cf8440ce01fa02806acf40f400c901fb00c87f01ca0055605067ce14ce12ce01fa02cb1fca00ca00c9ed54e05f08f2c082250a6c2b');
|
|
1190
1190
|
const builder = beginCell();
|
|
1191
1191
|
builder.storeUint(0, 1);
|
|
1192
1192
|
initEscrow_init_args({ $$type: 'Escrow_init_args', depositor, beneficiary, arbiter, deadline })(builder);
|