@meshconnect/uwc-types 0.2.5 → 0.2.6

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/index.d.ts CHANGED
@@ -10,4 +10,5 @@ export * from './react-hooks';
10
10
  export * from './signature';
11
11
  export * from './transactions';
12
12
  export * from './errors';
13
+ export type testType = string;
13
14
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAC7B,cAAc,mBAAmB,CAAA;AACjC,cAAc,WAAW,CAAA;AACzB,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,4BAA4B,CAAA;AAC1C,cAAc,eAAe,CAAA;AAC7B,cAAc,aAAa,CAAA;AAC3B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,UAAU,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAC7B,cAAc,mBAAmB,CAAA;AACjC,cAAc,WAAW,CAAA;AACzB,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,aAAa,CAAA;AAC3B,cAAc,4BAA4B,CAAA;AAC1C,cAAc,eAAe,CAAA;AAC7B,cAAc,aAAa,CAAA;AAC3B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,UAAU,CAAA;AACxB,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAA"}
@@ -27,7 +27,7 @@ export interface EVMContractCallRequest {
27
27
  functionName: string;
28
28
  args: unknown[];
29
29
  from: string;
30
- value?: string;
30
+ value?: bigint;
31
31
  gasConfig?: EVMGasConfig;
32
32
  }
33
33
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshconnect/uwc-types",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "TypeScript types for Universal Wallet Connector",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -10,3 +10,4 @@ export * from './react-hooks'
10
10
  export * from './signature'
11
11
  export * from './transactions'
12
12
  export * from './errors'
13
+ export type testType = string
@@ -31,7 +31,7 @@ export interface EVMContractCallRequest {
31
31
  functionName: string
32
32
  args: unknown[]
33
33
  from: string
34
- value?: string // For payable functions (in wei)
34
+ value?: bigint // For payable functions (in wei)
35
35
  gasConfig?: EVMGasConfig
36
36
  }
37
37