@ton-agent-kit/plugin-identity 1.2.0 → 1.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ton-agent-kit/plugin-identity",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Identity plugin for TON Agent Kit — agent registry, discovery, and reputation",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -42,7 +42,7 @@ export const deployReputationContractAction = defineAction({
42
42
  await sendTransaction(agent, [
43
43
  internal({
44
44
  to: reputation.address,
45
- value: toNano("0.05"),
45
+ value: toNano("0.12"),
46
46
  bounce: false,
47
47
  init: reputation.init!,
48
48
  body: deployBody,
@@ -49,7 +49,7 @@ export function createGetAgentReputationAction(contractAddress?: string) {
49
49
  await sendTransaction(agent, [
50
50
  internal({
51
51
  to: Address.parse(addr),
52
- value: toNano("0.05"),
52
+ value: toNano("0.12"),
53
53
  bounce: true,
54
54
  body,
55
55
  }),
@@ -71,7 +71,7 @@ export function createRegisterAgentAction(contractAddress?: string) {
71
71
  await sendTransaction(agent, [
72
72
  internal({
73
73
  to: Address.parse(addr),
74
- value: toNano("0.05"),
74
+ value: toNano("0.12"),
75
75
  bounce: true,
76
76
  body,
77
77
  }),
@@ -27,7 +27,7 @@ export const triggerCleanupAction = defineAction({
27
27
  await sendTransaction(agent, [
28
28
  internal({
29
29
  to: Address.parse(addr),
30
- value: toNano("0.05"),
30
+ value: toNano("0.12"),
31
31
  bounce: true,
32
32
  body,
33
33
  }),
@@ -27,7 +27,7 @@ export function createWithdrawReputationFeesAction(contractAddress?: string) {
27
27
  await sendTransaction(agent, [
28
28
  internal({
29
29
  to: Address.parse(addr),
30
- value: toNano("0.05"),
30
+ value: toNano("0.12"),
31
31
  bounce: true,
32
32
  body,
33
33
  }),