@pufferfinance/puffer-sdk 1.15.0 → 1.16.1
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/contracts/abis/mainnet/PufferVaultV2.cjs +1 -1
- package/dist/contracts/abis/mainnet/PufferVaultV2.cjs.map +1 -1
- package/dist/contracts/abis/mainnet/PufferVaultV2.d.ts +18 -0
- package/dist/contracts/abis/mainnet/PufferVaultV2.js +24 -0
- package/dist/contracts/abis/mainnet/PufferVaultV2.js.map +1 -1
- package/dist/contracts/handlers/carrot-staking-handler.d.ts +6 -6
- package/dist/contracts/handlers/distributor-handler.d.ts +6 -6
- package/dist/contracts/handlers/erc20-permit-handler.d.ts +6 -6
- package/dist/contracts/handlers/l1-reward-manager-handler.d.ts +6 -6
- package/dist/contracts/handlers/l2-reward-manager-handler.d.ts +6 -6
- package/dist/contracts/handlers/mtw-carrot-handler.d.ts +6 -6
- package/dist/contracts/handlers/nucleus-accountant-handler.d.ts +6 -6
- package/dist/contracts/handlers/nucleus-atomic-queue-handler.d.ts +6 -6
- package/dist/contracts/handlers/nucleus-boring-vault-handler.d.ts +6 -6
- package/dist/contracts/handlers/nucleus-teller-handler.d.ts +6 -6
- package/dist/contracts/handlers/puf-locker-handler.d.ts +6 -6
- package/dist/contracts/handlers/puffer-depositor-handler.d.ts +6 -6
- package/dist/contracts/handlers/puffer-l2-depositor-handler.d.ts +6 -6
- package/dist/contracts/handlers/puffer-vault-handler.cjs +1 -1
- package/dist/contracts/handlers/puffer-vault-handler.cjs.map +1 -1
- package/dist/contracts/handlers/puffer-vault-handler.d.ts +40 -6
- package/dist/contracts/handlers/puffer-vault-handler.js +37 -17
- package/dist/contracts/handlers/puffer-vault-handler.js.map +1 -1
- package/dist/contracts/handlers/puffer-withdrawal-manager-handler.d.ts +6 -6
- package/dist/contracts/tokens.cjs +1 -1
- package/dist/contracts/tokens.cjs.map +1 -1
- package/dist/contracts/tokens.d.ts +1 -0
- package/dist/contracts/tokens.js +5 -1
- package/dist/contracts/tokens.js.map +1 -1
- package/dist/utils/version.cjs +1 -1
- package/dist/utils/version.js +1 -1
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=[{type:"function",name:"depositETH",inputs:[{name:"receiver",type:"address",internalType:"address"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"payable"},{type:"function",name:"balanceOf",inputs:[{name:"account",type:"address",internalType:"address"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"view"},{type:"function",name:"previewDeposit",inputs:[{name:"assets",type:"uint256",internalType:"uint256"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"view"},{type:"function",name:"allowance",inputs:[{name:"owner",type:"address",internalType:"address"},{name:"spender",type:"address",internalType:"address"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"view"},{type:"function",name:"withdraw",inputs:[{name:"assets",type:"uint256",internalType:"uint256"},{name:"receiver",type:"address",internalType:"address"},{name:"owner",type:"address",internalType:"address"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"nonpayable"},{type:"function",name:"previewRedeem",inputs:[{name:"shares",type:"uint256",internalType:"uint256"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"view"},{type:"function",name:"maxRedeem",inputs:[{name:"owner",type:"address",internalType:"address"}],outputs:[{name:"maxShares",type:"uint256",internalType:"uint256"}],stateMutability:"view"},{type:"function",name:"getExitFeeBasisPoints",inputs:[],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"view"},{type:"function",name:"getRemainingAssetsDailyWithdrawalLimit",inputs:[],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"view"},{type:"function",name:"redeem",inputs:[{name:"shares",type:"uint256",internalType:"uint256"},{name:"receiver",type:"address",internalType:"address"},{name:"owner",type:"address",internalType:"address"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"nonpayable"},{type:"function",name:"convertToAssets",inputs:[{name:"shares",type:"uint256",internalType:"uint256"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"view"}];exports.PufferVaultV2=e;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=[{type:"function",name:"deposit",inputs:[{name:"assets",type:"uint256",internalType:"uint256"},{name:"receiver",type:"address",internalType:"address"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"nonpayable"},{type:"function",name:"depositETH",inputs:[{name:"receiver",type:"address",internalType:"address"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"payable"},{type:"function",name:"balanceOf",inputs:[{name:"account",type:"address",internalType:"address"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"view"},{type:"function",name:"previewDeposit",inputs:[{name:"assets",type:"uint256",internalType:"uint256"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"view"},{type:"function",name:"allowance",inputs:[{name:"owner",type:"address",internalType:"address"},{name:"spender",type:"address",internalType:"address"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"view"},{type:"function",name:"withdraw",inputs:[{name:"assets",type:"uint256",internalType:"uint256"},{name:"receiver",type:"address",internalType:"address"},{name:"owner",type:"address",internalType:"address"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"nonpayable"},{type:"function",name:"previewRedeem",inputs:[{name:"shares",type:"uint256",internalType:"uint256"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"view"},{type:"function",name:"maxRedeem",inputs:[{name:"owner",type:"address",internalType:"address"}],outputs:[{name:"maxShares",type:"uint256",internalType:"uint256"}],stateMutability:"view"},{type:"function",name:"getExitFeeBasisPoints",inputs:[],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"view"},{type:"function",name:"getRemainingAssetsDailyWithdrawalLimit",inputs:[],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"view"},{type:"function",name:"redeem",inputs:[{name:"shares",type:"uint256",internalType:"uint256"},{name:"receiver",type:"address",internalType:"address"},{name:"owner",type:"address",internalType:"address"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"nonpayable"},{type:"function",name:"convertToAssets",inputs:[{name:"shares",type:"uint256",internalType:"uint256"}],outputs:[{name:"",type:"uint256",internalType:"uint256"}],stateMutability:"view"}];exports.PufferVaultV2=e;
|
|
2
2
|
//# sourceMappingURL=PufferVaultV2.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PufferVaultV2.cjs","sources":["../../../../lib/contracts/abis/mainnet/PufferVaultV2.ts"],"sourcesContent":["export const PufferVaultV2 = <const>[\n {\n type: 'function',\n name: 'depositETH',\n inputs: [\n {\n name: 'receiver',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'payable',\n },\n {\n type: 'function',\n name: 'balanceOf',\n inputs: [\n {\n name: 'account',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'previewDeposit',\n inputs: [\n {\n name: 'assets',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'allowance',\n inputs: [\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n {\n name: 'spender',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'withdraw',\n inputs: [\n {\n name: 'assets',\n type: 'uint256',\n internalType: 'uint256',\n },\n {\n name: 'receiver',\n type: 'address',\n internalType: 'address',\n },\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'previewRedeem',\n inputs: [\n {\n name: 'shares',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'maxRedeem',\n inputs: [\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: 'maxShares',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'getExitFeeBasisPoints',\n inputs: [],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'getRemainingAssetsDailyWithdrawalLimit',\n inputs: [],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'redeem',\n inputs: [\n {\n name: 'shares',\n type: 'uint256',\n internalType: 'uint256',\n },\n {\n name: 'receiver',\n type: 'address',\n internalType: 'address',\n },\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'convertToAssets',\n inputs: [\n {\n name: 'shares',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n];\n"],"names":["PufferVaultV2"],"mappings":"gFAAO,MAAMA,EAAuB,CAClC,CACE,KAAM,WACN,KAAM,aACN,OAAQ,CACN,CACE,KAAM,WACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,SACnB,EACA,CACE,KAAM,WACN,KAAM,YACN,OAAQ,CACN,CACE,KAAM,UACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,iBACN,OAAQ,CACN,CACE,KAAM,SACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,YACN,OAAQ,CACN,CACE,KAAM,QACN,KAAM,UACN,aAAc,SAChB,EACA,CACE,KAAM,UACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,WACN,OAAQ,CACN,CACE,KAAM,SACN,KAAM,UACN,aAAc,SAChB,EACA,CACE,KAAM,WACN,KAAM,UACN,aAAc,SAChB,EACA,CACE,KAAM,QACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,YACnB,EACA,CACE,KAAM,WACN,KAAM,gBACN,OAAQ,CACN,CACE,KAAM,SACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,YACN,OAAQ,CACN,CACE,KAAM,QACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,YACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,wBACN,OAAQ,CAAC,EACT,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,yCACN,OAAQ,CAAC,EACT,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,SACN,OAAQ,CACN,CACE,KAAM,SACN,KAAM,UACN,aAAc,SAChB,EACA,CACE,KAAM,WACN,KAAM,UACN,aAAc,SAChB,EACA,CACE,KAAM,QACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,YACnB,EACA,CACE,KAAM,WACN,KAAM,kBACN,OAAQ,CACN,CACE,KAAM,SACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MAAA,CAErB"}
|
|
1
|
+
{"version":3,"file":"PufferVaultV2.cjs","sources":["../../../../lib/contracts/abis/mainnet/PufferVaultV2.ts"],"sourcesContent":["export const PufferVaultV2 = <const>[\n {\n type: 'function',\n name: 'deposit',\n inputs: [\n {\n name: 'assets',\n type: 'uint256',\n internalType: 'uint256',\n },\n {\n name: 'receiver',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'depositETH',\n inputs: [\n {\n name: 'receiver',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'payable',\n },\n {\n type: 'function',\n name: 'balanceOf',\n inputs: [\n {\n name: 'account',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'previewDeposit',\n inputs: [\n {\n name: 'assets',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'allowance',\n inputs: [\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n {\n name: 'spender',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'withdraw',\n inputs: [\n {\n name: 'assets',\n type: 'uint256',\n internalType: 'uint256',\n },\n {\n name: 'receiver',\n type: 'address',\n internalType: 'address',\n },\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'previewRedeem',\n inputs: [\n {\n name: 'shares',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'maxRedeem',\n inputs: [\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: 'maxShares',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'getExitFeeBasisPoints',\n inputs: [],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'getRemainingAssetsDailyWithdrawalLimit',\n inputs: [],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'redeem',\n inputs: [\n {\n name: 'shares',\n type: 'uint256',\n internalType: 'uint256',\n },\n {\n name: 'receiver',\n type: 'address',\n internalType: 'address',\n },\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'convertToAssets',\n inputs: [\n {\n name: 'shares',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n];\n"],"names":["PufferVaultV2"],"mappings":"gFAAO,MAAMA,EAAuB,CAClC,CACE,KAAM,WACN,KAAM,UACN,OAAQ,CACN,CACE,KAAM,SACN,KAAM,UACN,aAAc,SAChB,EACA,CACE,KAAM,WACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,YACnB,EACA,CACE,KAAM,WACN,KAAM,aACN,OAAQ,CACN,CACE,KAAM,WACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,SACnB,EACA,CACE,KAAM,WACN,KAAM,YACN,OAAQ,CACN,CACE,KAAM,UACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,iBACN,OAAQ,CACN,CACE,KAAM,SACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,YACN,OAAQ,CACN,CACE,KAAM,QACN,KAAM,UACN,aAAc,SAChB,EACA,CACE,KAAM,UACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,WACN,OAAQ,CACN,CACE,KAAM,SACN,KAAM,UACN,aAAc,SAChB,EACA,CACE,KAAM,WACN,KAAM,UACN,aAAc,SAChB,EACA,CACE,KAAM,QACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,YACnB,EACA,CACE,KAAM,WACN,KAAM,gBACN,OAAQ,CACN,CACE,KAAM,SACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,YACN,OAAQ,CACN,CACE,KAAM,QACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,YACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,wBACN,OAAQ,CAAC,EACT,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,yCACN,OAAQ,CAAC,EACT,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,SACN,OAAQ,CACN,CACE,KAAM,SACN,KAAM,UACN,aAAc,SAChB,EACA,CACE,KAAM,WACN,KAAM,UACN,aAAc,SAChB,EACA,CACE,KAAM,QACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,YACnB,EACA,CACE,KAAM,WACN,KAAM,kBACN,OAAQ,CACN,CACE,KAAM,SACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,QAAS,CACP,CACE,KAAM,GACN,KAAM,UACN,aAAc,SAAA,CAElB,EACA,gBAAiB,MAAA,CAErB"}
|
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
export declare const PufferVaultV2: readonly [{
|
|
2
|
+
readonly type: "function";
|
|
3
|
+
readonly name: "deposit";
|
|
4
|
+
readonly inputs: readonly [{
|
|
5
|
+
readonly name: "assets";
|
|
6
|
+
readonly type: "uint256";
|
|
7
|
+
readonly internalType: "uint256";
|
|
8
|
+
}, {
|
|
9
|
+
readonly name: "receiver";
|
|
10
|
+
readonly type: "address";
|
|
11
|
+
readonly internalType: "address";
|
|
12
|
+
}];
|
|
13
|
+
readonly outputs: readonly [{
|
|
14
|
+
readonly name: "";
|
|
15
|
+
readonly type: "uint256";
|
|
16
|
+
readonly internalType: "uint256";
|
|
17
|
+
}];
|
|
18
|
+
readonly stateMutability: "nonpayable";
|
|
19
|
+
}, {
|
|
2
20
|
readonly type: "function";
|
|
3
21
|
readonly name: "depositETH";
|
|
4
22
|
readonly inputs: readonly [{
|
|
@@ -1,4 +1,28 @@
|
|
|
1
1
|
const e = [
|
|
2
|
+
{
|
|
3
|
+
type: "function",
|
|
4
|
+
name: "deposit",
|
|
5
|
+
inputs: [
|
|
6
|
+
{
|
|
7
|
+
name: "assets",
|
|
8
|
+
type: "uint256",
|
|
9
|
+
internalType: "uint256"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
name: "receiver",
|
|
13
|
+
type: "address",
|
|
14
|
+
internalType: "address"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
outputs: [
|
|
18
|
+
{
|
|
19
|
+
name: "",
|
|
20
|
+
type: "uint256",
|
|
21
|
+
internalType: "uint256"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
stateMutability: "nonpayable"
|
|
25
|
+
},
|
|
2
26
|
{
|
|
3
27
|
type: "function",
|
|
4
28
|
name: "depositETH",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PufferVaultV2.js","sources":["../../../../lib/contracts/abis/mainnet/PufferVaultV2.ts"],"sourcesContent":["export const PufferVaultV2 = <const>[\n {\n type: 'function',\n name: 'depositETH',\n inputs: [\n {\n name: 'receiver',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'payable',\n },\n {\n type: 'function',\n name: 'balanceOf',\n inputs: [\n {\n name: 'account',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'previewDeposit',\n inputs: [\n {\n name: 'assets',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'allowance',\n inputs: [\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n {\n name: 'spender',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'withdraw',\n inputs: [\n {\n name: 'assets',\n type: 'uint256',\n internalType: 'uint256',\n },\n {\n name: 'receiver',\n type: 'address',\n internalType: 'address',\n },\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'previewRedeem',\n inputs: [\n {\n name: 'shares',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'maxRedeem',\n inputs: [\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: 'maxShares',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'getExitFeeBasisPoints',\n inputs: [],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'getRemainingAssetsDailyWithdrawalLimit',\n inputs: [],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'redeem',\n inputs: [\n {\n name: 'shares',\n type: 'uint256',\n internalType: 'uint256',\n },\n {\n name: 'receiver',\n type: 'address',\n internalType: 'address',\n },\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'convertToAssets',\n inputs: [\n {\n name: 'shares',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n];\n"],"names":["PufferVaultV2"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"PufferVaultV2.js","sources":["../../../../lib/contracts/abis/mainnet/PufferVaultV2.ts"],"sourcesContent":["export const PufferVaultV2 = <const>[\n {\n type: 'function',\n name: 'deposit',\n inputs: [\n {\n name: 'assets',\n type: 'uint256',\n internalType: 'uint256',\n },\n {\n name: 'receiver',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'depositETH',\n inputs: [\n {\n name: 'receiver',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'payable',\n },\n {\n type: 'function',\n name: 'balanceOf',\n inputs: [\n {\n name: 'account',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'previewDeposit',\n inputs: [\n {\n name: 'assets',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'allowance',\n inputs: [\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n {\n name: 'spender',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'withdraw',\n inputs: [\n {\n name: 'assets',\n type: 'uint256',\n internalType: 'uint256',\n },\n {\n name: 'receiver',\n type: 'address',\n internalType: 'address',\n },\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'previewRedeem',\n inputs: [\n {\n name: 'shares',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'maxRedeem',\n inputs: [\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: 'maxShares',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'getExitFeeBasisPoints',\n inputs: [],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'getRemainingAssetsDailyWithdrawalLimit',\n inputs: [],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'redeem',\n inputs: [\n {\n name: 'shares',\n type: 'uint256',\n internalType: 'uint256',\n },\n {\n name: 'receiver',\n type: 'address',\n internalType: 'address',\n },\n {\n name: 'owner',\n type: 'address',\n internalType: 'address',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'convertToAssets',\n inputs: [\n {\n name: 'shares',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n outputs: [\n {\n name: '',\n type: 'uint256',\n internalType: 'uint256',\n },\n ],\n stateMutability: 'view',\n },\n];\n"],"names":["PufferVaultV2"],"mappings":"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"}
|
|
@@ -6959,7 +6959,7 @@ export declare class CarrotStakingHandler {
|
|
|
6959
6959
|
simulate: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
6960
6960
|
simulateBlocks: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
6961
6961
|
simulateCalls: <const calls extends readonly unknown[]>(args: import('viem').SimulateCallsParameters<calls>) => Promise<import('viem').SimulateCallsReturnType<calls>>;
|
|
6962
|
-
simulateContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "
|
|
6962
|
+
simulateContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends ViemChain | undefined, accountOverride extends import('viem').Account | Address | undefined = undefined>(args: import('viem').SimulateContractParameters<abi, functionName, args_1, ViemChain | undefined, chainOverride, accountOverride>) => Promise<import('viem').SimulateContractReturnType<abi, functionName, args_1, ViemChain | undefined, import('viem').Account | undefined, chainOverride, accountOverride>>;
|
|
6963
6963
|
verifyMessage: (args: import('viem').VerifyMessageActionParameters) => Promise<import('viem').VerifyMessageActionReturnType>;
|
|
6964
6964
|
verifySiweMessage: (args: {
|
|
6965
6965
|
blockNumber?: bigint | undefined | undefined;
|
|
@@ -14432,7 +14432,7 @@ export declare class CarrotStakingHandler {
|
|
|
14432
14432
|
[x: `bytes18[${string}]`]: undefined;
|
|
14433
14433
|
[x: `bytes2[${string}]`]: undefined;
|
|
14434
14434
|
[x: `bytes3[${string}]`]: undefined;
|
|
14435
|
-
[x: `
|
|
14435
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
14436
14436
|
[x: `bytes23[${string}]`]: undefined;
|
|
14437
14437
|
[x: `bytes4[${string}]`]: undefined;
|
|
14438
14438
|
[x: `bytes5[${string}]`]: undefined;
|
|
@@ -14441,7 +14441,7 @@ export declare class CarrotStakingHandler {
|
|
|
14441
14441
|
[x: `bytes8[${string}]`]: undefined;
|
|
14442
14442
|
[x: `bytes9[${string}]`]: undefined;
|
|
14443
14443
|
[x: `bytes10[${string}]`]: undefined;
|
|
14444
|
-
[x: `
|
|
14444
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
14445
14445
|
[x: `bytes13[${string}]`]: undefined;
|
|
14446
14446
|
[x: `bytes14[${string}]`]: undefined;
|
|
14447
14447
|
[x: `bytes15[${string}]`]: undefined;
|
|
@@ -14534,7 +14534,7 @@ export declare class CarrotStakingHandler {
|
|
|
14534
14534
|
bytes18?: undefined;
|
|
14535
14535
|
bytes2?: undefined;
|
|
14536
14536
|
bytes3?: undefined;
|
|
14537
|
-
|
|
14537
|
+
bytes12?: undefined;
|
|
14538
14538
|
bytes23?: undefined;
|
|
14539
14539
|
bytes4?: undefined;
|
|
14540
14540
|
bytes5?: undefined;
|
|
@@ -14543,7 +14543,7 @@ export declare class CarrotStakingHandler {
|
|
|
14543
14543
|
bytes8?: undefined;
|
|
14544
14544
|
bytes9?: undefined;
|
|
14545
14545
|
bytes10?: undefined;
|
|
14546
|
-
|
|
14546
|
+
bytes11?: undefined;
|
|
14547
14547
|
bytes13?: undefined;
|
|
14548
14548
|
bytes14?: undefined;
|
|
14549
14549
|
bytes15?: undefined;
|
|
@@ -14630,7 +14630,7 @@ export declare class CarrotStakingHandler {
|
|
|
14630
14630
|
}, primaryType extends string>(args: import('viem').SignTypedDataParameters<typedData, primaryType, import('viem').Account | undefined>) => Promise<import('viem').SignTypedDataReturnType>;
|
|
14631
14631
|
switchChain: (args: import('viem').SwitchChainParameters) => Promise<void>;
|
|
14632
14632
|
watchAsset: (args: import('viem').WatchAssetParameters) => Promise<import('viem').WatchAssetReturnType>;
|
|
14633
|
-
writeContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "
|
|
14633
|
+
writeContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends ViemChain | undefined = undefined>(args: import('viem').WriteContractParameters<abi, functionName, args_1, ViemChain | undefined, import('viem').Account | undefined, chainOverride>) => Promise<import('viem').WriteContractReturnType>;
|
|
14634
14634
|
extend: <const client extends {
|
|
14635
14635
|
[x: string]: unknown;
|
|
14636
14636
|
account?: undefined;
|
|
@@ -7089,7 +7089,7 @@ export declare class DistributorHandler {
|
|
|
7089
7089
|
simulate: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
7090
7090
|
simulateBlocks: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
7091
7091
|
simulateCalls: <const calls extends readonly unknown[]>(args: import('viem').SimulateCallsParameters<calls>) => Promise<import('viem').SimulateCallsReturnType<calls>>;
|
|
7092
|
-
simulateContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "
|
|
7092
|
+
simulateContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends ViemChain | undefined, accountOverride extends import('viem').Account | Address | undefined = undefined>(args: import('viem').SimulateContractParameters<abi, functionName, args_1, ViemChain | undefined, chainOverride, accountOverride>) => Promise<import('viem').SimulateContractReturnType<abi, functionName, args_1, ViemChain | undefined, import('viem').Account | undefined, chainOverride, accountOverride>>;
|
|
7093
7093
|
verifyMessage: (args: import('viem').VerifyMessageActionParameters) => Promise<import('viem').VerifyMessageActionReturnType>;
|
|
7094
7094
|
verifySiweMessage: (args: {
|
|
7095
7095
|
blockNumber?: bigint | undefined | undefined;
|
|
@@ -14562,7 +14562,7 @@ export declare class DistributorHandler {
|
|
|
14562
14562
|
[x: `bytes18[${string}]`]: undefined;
|
|
14563
14563
|
[x: `bytes2[${string}]`]: undefined;
|
|
14564
14564
|
[x: `bytes3[${string}]`]: undefined;
|
|
14565
|
-
[x: `
|
|
14565
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
14566
14566
|
[x: `bytes23[${string}]`]: undefined;
|
|
14567
14567
|
[x: `bytes4[${string}]`]: undefined;
|
|
14568
14568
|
[x: `bytes5[${string}]`]: undefined;
|
|
@@ -14571,7 +14571,7 @@ export declare class DistributorHandler {
|
|
|
14571
14571
|
[x: `bytes8[${string}]`]: undefined;
|
|
14572
14572
|
[x: `bytes9[${string}]`]: undefined;
|
|
14573
14573
|
[x: `bytes10[${string}]`]: undefined;
|
|
14574
|
-
[x: `
|
|
14574
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
14575
14575
|
[x: `bytes13[${string}]`]: undefined;
|
|
14576
14576
|
[x: `bytes14[${string}]`]: undefined;
|
|
14577
14577
|
[x: `bytes15[${string}]`]: undefined;
|
|
@@ -14664,7 +14664,7 @@ export declare class DistributorHandler {
|
|
|
14664
14664
|
bytes18?: undefined;
|
|
14665
14665
|
bytes2?: undefined;
|
|
14666
14666
|
bytes3?: undefined;
|
|
14667
|
-
|
|
14667
|
+
bytes12?: undefined;
|
|
14668
14668
|
bytes23?: undefined;
|
|
14669
14669
|
bytes4?: undefined;
|
|
14670
14670
|
bytes5?: undefined;
|
|
@@ -14673,7 +14673,7 @@ export declare class DistributorHandler {
|
|
|
14673
14673
|
bytes8?: undefined;
|
|
14674
14674
|
bytes9?: undefined;
|
|
14675
14675
|
bytes10?: undefined;
|
|
14676
|
-
|
|
14676
|
+
bytes11?: undefined;
|
|
14677
14677
|
bytes13?: undefined;
|
|
14678
14678
|
bytes14?: undefined;
|
|
14679
14679
|
bytes15?: undefined;
|
|
@@ -14760,7 +14760,7 @@ export declare class DistributorHandler {
|
|
|
14760
14760
|
}, primaryType extends string>(args: import('viem').SignTypedDataParameters<typedData, primaryType, import('viem').Account | undefined>) => Promise<import('viem').SignTypedDataReturnType>;
|
|
14761
14761
|
switchChain: (args: import('viem').SwitchChainParameters) => Promise<void>;
|
|
14762
14762
|
watchAsset: (args: import('viem').WatchAssetParameters) => Promise<import('viem').WatchAssetReturnType>;
|
|
14763
|
-
writeContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "
|
|
14763
|
+
writeContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends ViemChain | undefined = undefined>(args: import('viem').WriteContractParameters<abi, functionName, args_1, ViemChain | undefined, import('viem').Account | undefined, chainOverride>) => Promise<import('viem').WriteContractReturnType>;
|
|
14764
14764
|
extend: <const client extends {
|
|
14765
14765
|
[x: string]: unknown;
|
|
14766
14766
|
account?: undefined;
|
|
@@ -7276,7 +7276,7 @@ export declare class ERC20PermitHandler {
|
|
|
7276
7276
|
simulate: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
7277
7277
|
simulateBlocks: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
7278
7278
|
simulateCalls: <const calls extends readonly unknown[]>(args: import('viem').SimulateCallsParameters<calls>) => Promise<import('viem').SimulateCallsReturnType<calls>>;
|
|
7279
|
-
simulateContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "
|
|
7279
|
+
simulateContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends ViemChain | undefined, accountOverride extends import('viem').Account | Address | undefined = undefined>(args: import('viem').SimulateContractParameters<abi, functionName, args_1, ViemChain | undefined, chainOverride, accountOverride>) => Promise<import('viem').SimulateContractReturnType<abi, functionName, args_1, ViemChain | undefined, import('viem').Account | undefined, chainOverride, accountOverride>>;
|
|
7280
7280
|
verifyMessage: (args: import('viem').VerifyMessageActionParameters) => Promise<import('viem').VerifyMessageActionReturnType>;
|
|
7281
7281
|
verifySiweMessage: (args: {
|
|
7282
7282
|
blockNumber?: bigint | undefined | undefined;
|
|
@@ -14749,7 +14749,7 @@ export declare class ERC20PermitHandler {
|
|
|
14749
14749
|
[x: `bytes18[${string}]`]: undefined;
|
|
14750
14750
|
[x: `bytes2[${string}]`]: undefined;
|
|
14751
14751
|
[x: `bytes3[${string}]`]: undefined;
|
|
14752
|
-
[x: `
|
|
14752
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
14753
14753
|
[x: `bytes23[${string}]`]: undefined;
|
|
14754
14754
|
[x: `bytes4[${string}]`]: undefined;
|
|
14755
14755
|
[x: `bytes5[${string}]`]: undefined;
|
|
@@ -14758,7 +14758,7 @@ export declare class ERC20PermitHandler {
|
|
|
14758
14758
|
[x: `bytes8[${string}]`]: undefined;
|
|
14759
14759
|
[x: `bytes9[${string}]`]: undefined;
|
|
14760
14760
|
[x: `bytes10[${string}]`]: undefined;
|
|
14761
|
-
[x: `
|
|
14761
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
14762
14762
|
[x: `bytes13[${string}]`]: undefined;
|
|
14763
14763
|
[x: `bytes14[${string}]`]: undefined;
|
|
14764
14764
|
[x: `bytes15[${string}]`]: undefined;
|
|
@@ -14851,7 +14851,7 @@ export declare class ERC20PermitHandler {
|
|
|
14851
14851
|
bytes18?: undefined;
|
|
14852
14852
|
bytes2?: undefined;
|
|
14853
14853
|
bytes3?: undefined;
|
|
14854
|
-
|
|
14854
|
+
bytes12?: undefined;
|
|
14855
14855
|
bytes23?: undefined;
|
|
14856
14856
|
bytes4?: undefined;
|
|
14857
14857
|
bytes5?: undefined;
|
|
@@ -14860,7 +14860,7 @@ export declare class ERC20PermitHandler {
|
|
|
14860
14860
|
bytes8?: undefined;
|
|
14861
14861
|
bytes9?: undefined;
|
|
14862
14862
|
bytes10?: undefined;
|
|
14863
|
-
|
|
14863
|
+
bytes11?: undefined;
|
|
14864
14864
|
bytes13?: undefined;
|
|
14865
14865
|
bytes14?: undefined;
|
|
14866
14866
|
bytes15?: undefined;
|
|
@@ -14947,7 +14947,7 @@ export declare class ERC20PermitHandler {
|
|
|
14947
14947
|
}, primaryType extends string>(args: import('viem').SignTypedDataParameters<typedData, primaryType, import('viem').Account | undefined>) => Promise<import('viem').SignTypedDataReturnType>;
|
|
14948
14948
|
switchChain: (args: import('viem').SwitchChainParameters) => Promise<void>;
|
|
14949
14949
|
watchAsset: (args: import('viem').WatchAssetParameters) => Promise<import('viem').WatchAssetReturnType>;
|
|
14950
|
-
writeContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "
|
|
14950
|
+
writeContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends ViemChain | undefined = undefined>(args: import('viem').WriteContractParameters<abi, functionName, args_1, ViemChain | undefined, import('viem').Account | undefined, chainOverride>) => Promise<import('viem').WriteContractReturnType>;
|
|
14951
14951
|
extend: <const client extends {
|
|
14952
14952
|
[x: string]: unknown;
|
|
14953
14953
|
account?: undefined;
|
|
@@ -6906,7 +6906,7 @@ export declare class L1RewardManagerHandler {
|
|
|
6906
6906
|
simulate: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
6907
6907
|
simulateBlocks: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
6908
6908
|
simulateCalls: <const calls extends readonly unknown[]>(args: import('viem').SimulateCallsParameters<calls>) => Promise<import('viem').SimulateCallsReturnType<calls>>;
|
|
6909
|
-
simulateContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "
|
|
6909
|
+
simulateContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends ViemChain | undefined, accountOverride extends import('viem').Account | Address | undefined = undefined>(args: import('viem').SimulateContractParameters<abi, functionName, args_1, ViemChain | undefined, chainOverride, accountOverride>) => Promise<import('viem').SimulateContractReturnType<abi, functionName, args_1, ViemChain | undefined, import('viem').Account | undefined, chainOverride, accountOverride>>;
|
|
6910
6910
|
verifyMessage: (args: import('viem').VerifyMessageActionParameters) => Promise<import('viem').VerifyMessageActionReturnType>;
|
|
6911
6911
|
verifySiweMessage: (args: {
|
|
6912
6912
|
blockNumber?: bigint | undefined | undefined;
|
|
@@ -14379,7 +14379,7 @@ export declare class L1RewardManagerHandler {
|
|
|
14379
14379
|
[x: `bytes18[${string}]`]: undefined;
|
|
14380
14380
|
[x: `bytes2[${string}]`]: undefined;
|
|
14381
14381
|
[x: `bytes3[${string}]`]: undefined;
|
|
14382
|
-
[x: `
|
|
14382
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
14383
14383
|
[x: `bytes23[${string}]`]: undefined;
|
|
14384
14384
|
[x: `bytes4[${string}]`]: undefined;
|
|
14385
14385
|
[x: `bytes5[${string}]`]: undefined;
|
|
@@ -14388,7 +14388,7 @@ export declare class L1RewardManagerHandler {
|
|
|
14388
14388
|
[x: `bytes8[${string}]`]: undefined;
|
|
14389
14389
|
[x: `bytes9[${string}]`]: undefined;
|
|
14390
14390
|
[x: `bytes10[${string}]`]: undefined;
|
|
14391
|
-
[x: `
|
|
14391
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
14392
14392
|
[x: `bytes13[${string}]`]: undefined;
|
|
14393
14393
|
[x: `bytes14[${string}]`]: undefined;
|
|
14394
14394
|
[x: `bytes15[${string}]`]: undefined;
|
|
@@ -14481,7 +14481,7 @@ export declare class L1RewardManagerHandler {
|
|
|
14481
14481
|
bytes18?: undefined;
|
|
14482
14482
|
bytes2?: undefined;
|
|
14483
14483
|
bytes3?: undefined;
|
|
14484
|
-
|
|
14484
|
+
bytes12?: undefined;
|
|
14485
14485
|
bytes23?: undefined;
|
|
14486
14486
|
bytes4?: undefined;
|
|
14487
14487
|
bytes5?: undefined;
|
|
@@ -14490,7 +14490,7 @@ export declare class L1RewardManagerHandler {
|
|
|
14490
14490
|
bytes8?: undefined;
|
|
14491
14491
|
bytes9?: undefined;
|
|
14492
14492
|
bytes10?: undefined;
|
|
14493
|
-
|
|
14493
|
+
bytes11?: undefined;
|
|
14494
14494
|
bytes13?: undefined;
|
|
14495
14495
|
bytes14?: undefined;
|
|
14496
14496
|
bytes15?: undefined;
|
|
@@ -14577,7 +14577,7 @@ export declare class L1RewardManagerHandler {
|
|
|
14577
14577
|
}, primaryType extends string>(args: import('viem').SignTypedDataParameters<typedData, primaryType, import('viem').Account | undefined>) => Promise<import('viem').SignTypedDataReturnType>;
|
|
14578
14578
|
switchChain: (args: import('viem').SwitchChainParameters) => Promise<void>;
|
|
14579
14579
|
watchAsset: (args: import('viem').WatchAssetParameters) => Promise<import('viem').WatchAssetReturnType>;
|
|
14580
|
-
writeContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "
|
|
14580
|
+
writeContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends ViemChain | undefined = undefined>(args: import('viem').WriteContractParameters<abi, functionName, args_1, ViemChain | undefined, import('viem').Account | undefined, chainOverride>) => Promise<import('viem').WriteContractReturnType>;
|
|
14581
14581
|
extend: <const client extends {
|
|
14582
14582
|
[x: string]: unknown;
|
|
14583
14583
|
account?: undefined;
|
|
@@ -7038,7 +7038,7 @@ export declare class L2RewardManagerHandler {
|
|
|
7038
7038
|
simulate: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
7039
7039
|
simulateBlocks: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
7040
7040
|
simulateCalls: <const calls extends readonly unknown[]>(args: import('viem').SimulateCallsParameters<calls>) => Promise<import('viem').SimulateCallsReturnType<calls>>;
|
|
7041
|
-
simulateContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "
|
|
7041
|
+
simulateContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends ViemChain | undefined, accountOverride extends import('viem').Account | Address | undefined = undefined>(args: import('viem').SimulateContractParameters<abi, functionName, args_1, ViemChain | undefined, chainOverride, accountOverride>) => Promise<import('viem').SimulateContractReturnType<abi, functionName, args_1, ViemChain | undefined, import('viem').Account | undefined, chainOverride, accountOverride>>;
|
|
7042
7042
|
verifyMessage: (args: import('viem').VerifyMessageActionParameters) => Promise<import('viem').VerifyMessageActionReturnType>;
|
|
7043
7043
|
verifySiweMessage: (args: {
|
|
7044
7044
|
blockNumber?: bigint | undefined | undefined;
|
|
@@ -14511,7 +14511,7 @@ export declare class L2RewardManagerHandler {
|
|
|
14511
14511
|
[x: `bytes18[${string}]`]: undefined;
|
|
14512
14512
|
[x: `bytes2[${string}]`]: undefined;
|
|
14513
14513
|
[x: `bytes3[${string}]`]: undefined;
|
|
14514
|
-
[x: `
|
|
14514
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
14515
14515
|
[x: `bytes23[${string}]`]: undefined;
|
|
14516
14516
|
[x: `bytes4[${string}]`]: undefined;
|
|
14517
14517
|
[x: `bytes5[${string}]`]: undefined;
|
|
@@ -14520,7 +14520,7 @@ export declare class L2RewardManagerHandler {
|
|
|
14520
14520
|
[x: `bytes8[${string}]`]: undefined;
|
|
14521
14521
|
[x: `bytes9[${string}]`]: undefined;
|
|
14522
14522
|
[x: `bytes10[${string}]`]: undefined;
|
|
14523
|
-
[x: `
|
|
14523
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
14524
14524
|
[x: `bytes13[${string}]`]: undefined;
|
|
14525
14525
|
[x: `bytes14[${string}]`]: undefined;
|
|
14526
14526
|
[x: `bytes15[${string}]`]: undefined;
|
|
@@ -14613,7 +14613,7 @@ export declare class L2RewardManagerHandler {
|
|
|
14613
14613
|
bytes18?: undefined;
|
|
14614
14614
|
bytes2?: undefined;
|
|
14615
14615
|
bytes3?: undefined;
|
|
14616
|
-
|
|
14616
|
+
bytes12?: undefined;
|
|
14617
14617
|
bytes23?: undefined;
|
|
14618
14618
|
bytes4?: undefined;
|
|
14619
14619
|
bytes5?: undefined;
|
|
@@ -14622,7 +14622,7 @@ export declare class L2RewardManagerHandler {
|
|
|
14622
14622
|
bytes8?: undefined;
|
|
14623
14623
|
bytes9?: undefined;
|
|
14624
14624
|
bytes10?: undefined;
|
|
14625
|
-
|
|
14625
|
+
bytes11?: undefined;
|
|
14626
14626
|
bytes13?: undefined;
|
|
14627
14627
|
bytes14?: undefined;
|
|
14628
14628
|
bytes15?: undefined;
|
|
@@ -14709,7 +14709,7 @@ export declare class L2RewardManagerHandler {
|
|
|
14709
14709
|
}, primaryType extends string>(args: import('viem').SignTypedDataParameters<typedData, primaryType, import('viem').Account | undefined>) => Promise<import('viem').SignTypedDataReturnType>;
|
|
14710
14710
|
switchChain: (args: import('viem').SwitchChainParameters) => Promise<void>;
|
|
14711
14711
|
watchAsset: (args: import('viem').WatchAssetParameters) => Promise<import('viem').WatchAssetReturnType>;
|
|
14712
|
-
writeContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "
|
|
14712
|
+
writeContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends ViemChain | undefined = undefined>(args: import('viem').WriteContractParameters<abi, functionName, args_1, ViemChain | undefined, import('viem').Account | undefined, chainOverride>) => Promise<import('viem').WriteContractReturnType>;
|
|
14713
14713
|
extend: <const client extends {
|
|
14714
14714
|
[x: string]: unknown;
|
|
14715
14715
|
account?: undefined;
|
|
@@ -7150,7 +7150,7 @@ export declare class MtwCarrotHandler {
|
|
|
7150
7150
|
simulate: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
7151
7151
|
simulateBlocks: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
7152
7152
|
simulateCalls: <const calls extends readonly unknown[]>(args: import('viem').SimulateCallsParameters<calls>) => Promise<import('viem').SimulateCallsReturnType<calls>>;
|
|
7153
|
-
simulateContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "
|
|
7153
|
+
simulateContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends ViemChain | undefined, accountOverride extends import('viem').Account | Address | undefined = undefined>(args: import('viem').SimulateContractParameters<abi, functionName, args_1, ViemChain | undefined, chainOverride, accountOverride>) => Promise<import('viem').SimulateContractReturnType<abi, functionName, args_1, ViemChain | undefined, import('viem').Account | undefined, chainOverride, accountOverride>>;
|
|
7154
7154
|
verifyMessage: (args: import('viem').VerifyMessageActionParameters) => Promise<import('viem').VerifyMessageActionReturnType>;
|
|
7155
7155
|
verifySiweMessage: (args: {
|
|
7156
7156
|
blockNumber?: bigint | undefined | undefined;
|
|
@@ -14623,7 +14623,7 @@ export declare class MtwCarrotHandler {
|
|
|
14623
14623
|
[x: `bytes18[${string}]`]: undefined;
|
|
14624
14624
|
[x: `bytes2[${string}]`]: undefined;
|
|
14625
14625
|
[x: `bytes3[${string}]`]: undefined;
|
|
14626
|
-
[x: `
|
|
14626
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
14627
14627
|
[x: `bytes23[${string}]`]: undefined;
|
|
14628
14628
|
[x: `bytes4[${string}]`]: undefined;
|
|
14629
14629
|
[x: `bytes5[${string}]`]: undefined;
|
|
@@ -14632,7 +14632,7 @@ export declare class MtwCarrotHandler {
|
|
|
14632
14632
|
[x: `bytes8[${string}]`]: undefined;
|
|
14633
14633
|
[x: `bytes9[${string}]`]: undefined;
|
|
14634
14634
|
[x: `bytes10[${string}]`]: undefined;
|
|
14635
|
-
[x: `
|
|
14635
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
14636
14636
|
[x: `bytes13[${string}]`]: undefined;
|
|
14637
14637
|
[x: `bytes14[${string}]`]: undefined;
|
|
14638
14638
|
[x: `bytes15[${string}]`]: undefined;
|
|
@@ -14725,7 +14725,7 @@ export declare class MtwCarrotHandler {
|
|
|
14725
14725
|
bytes18?: undefined;
|
|
14726
14726
|
bytes2?: undefined;
|
|
14727
14727
|
bytes3?: undefined;
|
|
14728
|
-
|
|
14728
|
+
bytes12?: undefined;
|
|
14729
14729
|
bytes23?: undefined;
|
|
14730
14730
|
bytes4?: undefined;
|
|
14731
14731
|
bytes5?: undefined;
|
|
@@ -14734,7 +14734,7 @@ export declare class MtwCarrotHandler {
|
|
|
14734
14734
|
bytes8?: undefined;
|
|
14735
14735
|
bytes9?: undefined;
|
|
14736
14736
|
bytes10?: undefined;
|
|
14737
|
-
|
|
14737
|
+
bytes11?: undefined;
|
|
14738
14738
|
bytes13?: undefined;
|
|
14739
14739
|
bytes14?: undefined;
|
|
14740
14740
|
bytes15?: undefined;
|
|
@@ -14821,7 +14821,7 @@ export declare class MtwCarrotHandler {
|
|
|
14821
14821
|
}, primaryType extends string>(args: import('viem').SignTypedDataParameters<typedData, primaryType, import('viem').Account | undefined>) => Promise<import('viem').SignTypedDataReturnType>;
|
|
14822
14822
|
switchChain: (args: import('viem').SwitchChainParameters) => Promise<void>;
|
|
14823
14823
|
watchAsset: (args: import('viem').WatchAssetParameters) => Promise<import('viem').WatchAssetReturnType>;
|
|
14824
|
-
writeContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "
|
|
14824
|
+
writeContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends ViemChain | undefined = undefined>(args: import('viem').WriteContractParameters<abi, functionName, args_1, ViemChain | undefined, import('viem').Account | undefined, chainOverride>) => Promise<import('viem').WriteContractReturnType>;
|
|
14825
14825
|
extend: <const client extends {
|
|
14826
14826
|
[x: string]: unknown;
|
|
14827
14827
|
account?: undefined;
|
|
@@ -6957,7 +6957,7 @@ export declare class NucleusAccountantHandler {
|
|
|
6957
6957
|
simulate: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
6958
6958
|
simulateBlocks: <const calls extends readonly unknown[]>(args: import('viem').SimulateBlocksParameters<calls>) => Promise<import('viem').SimulateBlocksReturnType<calls>>;
|
|
6959
6959
|
simulateCalls: <const calls extends readonly unknown[]>(args: import('viem').SimulateCallsParameters<calls>) => Promise<import('viem').SimulateCallsReturnType<calls>>;
|
|
6960
|
-
simulateContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "
|
|
6960
|
+
simulateContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends import('viem').Chain | undefined, accountOverride extends import('viem').Account | Address | undefined = undefined>(args: import('viem').SimulateContractParameters<abi, functionName, args_1, import('viem').Chain | undefined, chainOverride, accountOverride>) => Promise<import('viem').SimulateContractReturnType<abi, functionName, args_1, import('viem').Chain | undefined, import('viem').Account | undefined, chainOverride, accountOverride>>;
|
|
6961
6961
|
verifyMessage: (args: import('viem').VerifyMessageActionParameters) => Promise<import('viem').VerifyMessageActionReturnType>;
|
|
6962
6962
|
verifySiweMessage: (args: {
|
|
6963
6963
|
blockNumber?: bigint | undefined | undefined;
|
|
@@ -14430,7 +14430,7 @@ export declare class NucleusAccountantHandler {
|
|
|
14430
14430
|
[x: `bytes18[${string}]`]: undefined;
|
|
14431
14431
|
[x: `bytes2[${string}]`]: undefined;
|
|
14432
14432
|
[x: `bytes3[${string}]`]: undefined;
|
|
14433
|
-
[x: `
|
|
14433
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
14434
14434
|
[x: `bytes23[${string}]`]: undefined;
|
|
14435
14435
|
[x: `bytes4[${string}]`]: undefined;
|
|
14436
14436
|
[x: `bytes5[${string}]`]: undefined;
|
|
@@ -14439,7 +14439,7 @@ export declare class NucleusAccountantHandler {
|
|
|
14439
14439
|
[x: `bytes8[${string}]`]: undefined;
|
|
14440
14440
|
[x: `bytes9[${string}]`]: undefined;
|
|
14441
14441
|
[x: `bytes10[${string}]`]: undefined;
|
|
14442
|
-
[x: `
|
|
14442
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
14443
14443
|
[x: `bytes13[${string}]`]: undefined;
|
|
14444
14444
|
[x: `bytes14[${string}]`]: undefined;
|
|
14445
14445
|
[x: `bytes15[${string}]`]: undefined;
|
|
@@ -14532,7 +14532,7 @@ export declare class NucleusAccountantHandler {
|
|
|
14532
14532
|
bytes18?: undefined;
|
|
14533
14533
|
bytes2?: undefined;
|
|
14534
14534
|
bytes3?: undefined;
|
|
14535
|
-
|
|
14535
|
+
bytes12?: undefined;
|
|
14536
14536
|
bytes23?: undefined;
|
|
14537
14537
|
bytes4?: undefined;
|
|
14538
14538
|
bytes5?: undefined;
|
|
@@ -14541,7 +14541,7 @@ export declare class NucleusAccountantHandler {
|
|
|
14541
14541
|
bytes8?: undefined;
|
|
14542
14542
|
bytes9?: undefined;
|
|
14543
14543
|
bytes10?: undefined;
|
|
14544
|
-
|
|
14544
|
+
bytes11?: undefined;
|
|
14545
14545
|
bytes13?: undefined;
|
|
14546
14546
|
bytes14?: undefined;
|
|
14547
14547
|
bytes15?: undefined;
|
|
@@ -14628,7 +14628,7 @@ export declare class NucleusAccountantHandler {
|
|
|
14628
14628
|
}, primaryType extends string>(args: import('viem').SignTypedDataParameters<typedData, primaryType, import('viem').Account | undefined>) => Promise<import('viem').SignTypedDataReturnType>;
|
|
14629
14629
|
switchChain: (args: import('viem').SwitchChainParameters) => Promise<void>;
|
|
14630
14630
|
watchAsset: (args: import('viem').WatchAssetParameters) => Promise<import('viem').WatchAssetReturnType>;
|
|
14631
|
-
writeContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "
|
|
14631
|
+
writeContract: <const abi extends import('viem').Abi | readonly unknown[], functionName extends import('viem').ContractFunctionName<abi, "nonpayable" | "payable">, args_1 extends import('viem').ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends import('viem').Chain | undefined = undefined>(args: import('viem').WriteContractParameters<abi, functionName, args_1, import('viem').Chain | undefined, import('viem').Account | undefined, chainOverride>) => Promise<import('viem').WriteContractReturnType>;
|
|
14632
14632
|
extend: <const client extends {
|
|
14633
14633
|
[x: string]: unknown;
|
|
14634
14634
|
account?: undefined;
|