@xyo-network/xl1-protocol-sdk 1.4.5 → 1.4.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.
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import type { MicroXL1 } from '@xyo-network/xl1-protocol';
|
|
2
1
|
import type { ValidatableInstance } from './modifiers/Validatable.ts';
|
|
3
2
|
export interface TransactionFeesInstance extends ValidatableInstance {
|
|
4
|
-
base:
|
|
5
|
-
gasLimit:
|
|
6
|
-
gasPrice:
|
|
7
|
-
priority:
|
|
3
|
+
base: bigint;
|
|
4
|
+
gasLimit: bigint;
|
|
5
|
+
gasPrice: bigint;
|
|
6
|
+
priority: bigint;
|
|
8
7
|
}
|
|
9
8
|
//# sourceMappingURL=Fees.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Fees.d.ts","sourceRoot":"","sources":["../../../src/instances/Fees.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"Fees.d.ts","sourceRoot":"","sources":["../../../src/instances/Fees.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAA;AAErE,MAAM,WAAW,uBAAwB,SAAQ,mBAAmB;IAClE,IAAI,EAAE,MAAM,CAAA;IACZ,QAAQ,EAAE,MAAM,CAAA;IAChB,QAAQ,EAAE,MAAM,CAAA;IAChB,QAAQ,EAAE,MAAM,CAAA;CACjB"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@xyo-network/xl1-protocol-sdk",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.6",
|
|
5
5
|
"description": "XYO Layer One SDK Protocol",
|
|
6
6
|
"homepage": "https://xylabs.com",
|
|
7
7
|
"bugs": {
|
|
@@ -34,23 +34,23 @@
|
|
|
34
34
|
"deploy3": "echo Deploy3 not allowed!"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@xylabs/assert": "^4.
|
|
38
|
-
"@xylabs/hex": "^4.
|
|
39
|
-
"@xylabs/object": "^4.
|
|
40
|
-
"@xylabs/promise": "^4.
|
|
41
|
-
"@xyo-network/account-model": "^3.
|
|
42
|
-
"@xyo-network/archivist-model": "^3.
|
|
43
|
-
"@xyo-network/boundwitness-builder": "^3.
|
|
44
|
-
"@xyo-network/boundwitness-model": "^3.
|
|
45
|
-
"@xyo-network/payload-builder": "^3.
|
|
46
|
-
"@xyo-network/payload-model": "^3.
|
|
47
|
-
"@xyo-network/xl1-protocol": "^1.3.
|
|
37
|
+
"@xylabs/assert": "^4.10.0",
|
|
38
|
+
"@xylabs/hex": "^4.10.0",
|
|
39
|
+
"@xylabs/object": "^4.10.0",
|
|
40
|
+
"@xylabs/promise": "^4.10.0",
|
|
41
|
+
"@xyo-network/account-model": "^3.17.0",
|
|
42
|
+
"@xyo-network/archivist-model": "^3.17.0",
|
|
43
|
+
"@xyo-network/boundwitness-builder": "^3.17.0",
|
|
44
|
+
"@xyo-network/boundwitness-model": "^3.17.0",
|
|
45
|
+
"@xyo-network/payload-builder": "^3.17.0",
|
|
46
|
+
"@xyo-network/payload-model": "^3.17.0",
|
|
47
|
+
"@xyo-network/xl1-protocol": "^1.3.42"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@types/node": "^22.15.21",
|
|
51
51
|
"@xylabs/ts-scripts-yarn3": "^6.5.7",
|
|
52
52
|
"@xylabs/tsconfig": "^6.5.7",
|
|
53
|
-
"knip": "^5.57.
|
|
53
|
+
"knip": "^5.57.1",
|
|
54
54
|
"typescript": "^5.8.3"
|
|
55
55
|
},
|
|
56
56
|
"engines": {
|
package/src/instances/Fees.ts
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
import type { MicroXL1 } from '@xyo-network/xl1-protocol'
|
|
2
|
-
|
|
3
1
|
import type { ValidatableInstance } from './modifiers/Validatable.ts'
|
|
4
2
|
|
|
5
3
|
export interface TransactionFeesInstance extends ValidatableInstance {
|
|
6
|
-
base:
|
|
7
|
-
gasLimit:
|
|
8
|
-
gasPrice:
|
|
9
|
-
priority:
|
|
4
|
+
base: bigint
|
|
5
|
+
gasLimit: bigint
|
|
6
|
+
gasPrice: bigint
|
|
7
|
+
priority: bigint
|
|
10
8
|
}
|