@alephium/web3 0.29.3 → 0.30.0
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.
|
@@ -319,6 +319,8 @@ export interface CallContract {
|
|
|
319
319
|
txId?: string;
|
|
320
320
|
/** @format address */
|
|
321
321
|
address: string;
|
|
322
|
+
/** @format address */
|
|
323
|
+
callerAddress?: string;
|
|
322
324
|
/** @format int32 */
|
|
323
325
|
methodIndex: number;
|
|
324
326
|
args?: Val[];
|
|
@@ -741,6 +743,8 @@ export interface TestContract {
|
|
|
741
743
|
txId?: string;
|
|
742
744
|
/** @format address */
|
|
743
745
|
address?: string;
|
|
746
|
+
/** @format address */
|
|
747
|
+
callerAddress?: string;
|
|
744
748
|
/** @format contract */
|
|
745
749
|
bytecode: string;
|
|
746
750
|
initialImmFields?: Val[];
|
|
@@ -983,7 +987,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
983
987
|
}
|
|
984
988
|
/**
|
|
985
989
|
* @title Alephium API
|
|
986
|
-
* @version 2.8.
|
|
990
|
+
* @version 2.8.4
|
|
987
991
|
* @baseUrl ../
|
|
988
992
|
*/
|
|
989
993
|
export declare class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDataType> {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alephium/web3",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.30.0",
|
|
4
4
|
"description": "A JS/TS library to interact with the Alephium platform",
|
|
5
5
|
"license": "GPL",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"author": "Alephium dev <dev@alephium.org>",
|
|
29
29
|
"config": {
|
|
30
|
-
"alephium_version": "2.8.
|
|
30
|
+
"alephium_version": "2.8.4",
|
|
31
31
|
"explorer_backend_version": "1.16.1"
|
|
32
32
|
},
|
|
33
33
|
"type": "commonjs",
|
package/src/api/api-alephium.ts
CHANGED
|
@@ -361,6 +361,8 @@ export interface CallContract {
|
|
|
361
361
|
txId?: string
|
|
362
362
|
/** @format address */
|
|
363
363
|
address: string
|
|
364
|
+
/** @format address */
|
|
365
|
+
callerAddress?: string
|
|
364
366
|
/** @format int32 */
|
|
365
367
|
methodIndex: number
|
|
366
368
|
args?: Val[]
|
|
@@ -851,6 +853,8 @@ export interface TestContract {
|
|
|
851
853
|
txId?: string
|
|
852
854
|
/** @format address */
|
|
853
855
|
address?: string
|
|
856
|
+
/** @format address */
|
|
857
|
+
callerAddress?: string
|
|
854
858
|
/** @format contract */
|
|
855
859
|
bytecode: string
|
|
856
860
|
initialImmFields?: Val[]
|
|
@@ -1278,7 +1282,7 @@ export class HttpClient<SecurityDataType = unknown> {
|
|
|
1278
1282
|
|
|
1279
1283
|
/**
|
|
1280
1284
|
* @title Alephium API
|
|
1281
|
-
* @version 2.8.
|
|
1285
|
+
* @version 2.8.4
|
|
1282
1286
|
* @baseUrl ../
|
|
1283
1287
|
*/
|
|
1284
1288
|
export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDataType> {
|