@gfxlabs/oku-chains 1.12.7 → 1.12.11
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/browser.js +13 -0
- package/dist/index-mjs.js +13 -0
- package/dist/index.js +13 -0
- package/dist/types/definitions/arbitrum.d.ts +3 -0
- package/dist/types/definitions/avalanche.d.ts +2 -0
- package/dist/types/definitions/base.d.ts +11 -0
- package/dist/types/definitions/blast.d.ts +10 -0
- package/dist/types/definitions/bob.d.ts +10 -0
- package/dist/types/definitions/boba.d.ts +3 -0
- package/dist/types/definitions/bsc.d.ts +2 -0
- package/dist/types/definitions/celo.d.ts +18 -0
- package/dist/types/definitions/corn.d.ts +2 -0
- package/dist/types/definitions/etherlink.d.ts +2 -0
- package/dist/types/definitions/filecoin.d.ts +3 -0
- package/dist/types/definitions/gensyn.d.ts +3 -0
- package/dist/types/definitions/gnosis.d.ts +2 -0
- package/dist/types/definitions/goat.d.ts +2 -0
- package/dist/types/definitions/hemi.d.ts +3 -0
- package/dist/types/definitions/hyperevem.d.ts +2 -0
- package/dist/types/definitions/lens.d.ts +2 -0
- package/dist/types/definitions/lightlink.d.ts +2 -0
- package/dist/types/definitions/linea.d.ts +3 -0
- package/dist/types/definitions/lisk.d.ts +10 -0
- package/dist/types/definitions/mainnet.d.ts +2 -0
- package/dist/types/definitions/manta.d.ts +2 -0
- package/dist/types/definitions/mantle.d.ts +3 -0
- package/dist/types/definitions/matchain.d.ts +2 -0
- package/dist/types/definitions/metal.d.ts +10 -0
- package/dist/types/definitions/monad.d.ts +7 -5
- package/dist/types/definitions/moonbeam.d.ts +3 -1
- package/dist/types/definitions/nibiru.d.ts +3 -0
- package/dist/types/definitions/optimism.d.ts +11 -0
- package/dist/types/definitions/pharos.d.ts +2 -0
- package/dist/types/definitions/plasma.d.ts +2 -0
- package/dist/types/definitions/polygon.d.ts +2 -0
- package/dist/types/definitions/redbelly.d.ts +3 -0
- package/dist/types/definitions/ronin.d.ts +2 -0
- package/dist/types/definitions/rootstock.d.ts +2 -0
- package/dist/types/definitions/saga.d.ts +2 -0
- package/dist/types/definitions/scroll.d.ts +2 -0
- package/dist/types/definitions/sei.d.ts +2 -0
- package/dist/types/definitions/sonic.d.ts +2 -0
- package/dist/types/definitions/taiko.d.ts +2 -0
- package/dist/types/definitions/telos.d.ts +3 -0
- package/dist/types/definitions/tronShasta.d.ts +2 -0
- package/dist/types/definitions/unichain.d.ts +11 -0
- package/dist/types/definitions/worldchain.d.ts +26 -16
- package/dist/types/definitions/xdc.d.ts +2 -0
- package/dist/types/definitions/zerog.d.ts +2 -0
- package/dist/types/definitions/zkevm.d.ts +2 -0
- package/dist/types/definitions/zksync.d.ts +20 -11
- package/dist/types/index.d.ts +252 -24
- package/dist/types/non-evm/bitcoin.d.ts +2 -0
- package/package.json +2 -2
|
@@ -70,8 +70,10 @@ export declare const bitcoin: Readonly<{
|
|
|
70
70
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
71
71
|
formatters?: undefined;
|
|
72
72
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
73
|
+
client: import("viem").Client;
|
|
73
74
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
74
75
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
76
|
+
client: import("viem").Client;
|
|
75
77
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
76
78
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
77
79
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gfxlabs/oku-chains",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.11",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index-mjs.js",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"tslib": "^2.8.1",
|
|
52
52
|
"tsx": "^4.21.0",
|
|
53
53
|
"typescript": "^5.9.3",
|
|
54
|
-
"viem": "^2.
|
|
54
|
+
"viem": "^2.55.0"
|
|
55
55
|
},
|
|
56
56
|
"packageManager": "yarn@4.15.0",
|
|
57
57
|
"peerDependencies": {
|