@reyaxyz/community-sdk 0.52.21 → 0.52.23

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.
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"/","sources":["modules/vltz/types.ts"],"names":[],"mappings":"","sourcesContent":["import { VltzRoundInfo, VltzWalletInfo } from '@reyaxyz/common';\nimport { Signer } from 'ethers';\n\nexport type VltzMintResult = {\n transactionHash: string | null;\n};\nexport type VltzMintParams = {\n signer: Signer;\n allocation: string;\n merkleRoot: string;\n merkleProof: string[];\n};\n\nexport type VltzRoundInfoParams = {\n id: string;\n};\n\nexport type VltzRoundInfoResult = VltzRoundInfo;\n\nexport type VltzWalletInfoParams = {\n address: string;\n roundId: string;\n};\n\nexport type VltzWalletInfoResult = VltzWalletInfo;\n"]}
1
+ {"version":3,"file":"types.js","sourceRoot":"/","sources":["modules/vltz/types.ts"],"names":[],"mappings":"","sourcesContent":["import { VltzRoundInfo, VltzWalletInfo } from '@reyaxyz/common';\nimport { Signer } from 'ethers';\n\nexport type VltzMintResult = {\n transactionHash: string | null;\n};\nexport type VltzMintParams = {\n signer: Signer;\n allocation: number;\n merkleRoot: string;\n merkleProof: string[];\n};\n\nexport type VltzRoundInfoParams = {\n id: string;\n};\n\nexport type VltzRoundInfoResult = VltzRoundInfo;\n\nexport type VltzWalletInfoParams = {\n address: string;\n roundId: string;\n};\n\nexport type VltzWalletInfoResult = VltzWalletInfo;\n"]}
@@ -5,7 +5,7 @@ export type VltzMintResult = {
5
5
  };
6
6
  export type VltzMintParams = {
7
7
  signer: Signer;
8
- allocation: string;
8
+ allocation: number;
9
9
  merkleRoot: string;
10
10
  merkleProof: string[];
11
11
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reyaxyz/community-sdk",
3
- "version": "0.52.21",
3
+ "version": "0.52.23",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -10,8 +10,8 @@
10
10
  "url": "https://github.com/Reya-Labs/reya-off-chain-monorepo.git"
11
11
  },
12
12
  "dependencies": {
13
- "@reyaxyz/common": "0.305.4",
14
- "@reyaxyz/sdk": "0.136.4",
13
+ "@reyaxyz/common": "0.305.6",
14
+ "@reyaxyz/sdk": "0.136.6",
15
15
  "ethers": "6.9.0"
16
16
  },
17
17
  "main": "dist/index.js",
@@ -38,5 +38,5 @@
38
38
  "generate:coverage-badges": "npx istanbul-badges-readme --silent"
39
39
  },
40
40
  "packageManager": "pnpm@8.3.1",
41
- "gitHead": "42855f33c34008f82ca46eee5e152cd09e37a1da"
41
+ "gitHead": "3f7c686723383055db77d4ac48dafbdf235a5b45"
42
42
  }
@@ -6,7 +6,7 @@ export type VltzMintResult = {
6
6
  };
7
7
  export type VltzMintParams = {
8
8
  signer: Signer;
9
- allocation: string;
9
+ allocation: number;
10
10
  merkleRoot: string;
11
11
  merkleProof: string[];
12
12
  };