Use actual kernel version for deployed contracts#328
Use actual kernel version for deployed contracts#328johanneskares wants to merge 2 commits intopimlicolabs:mainfrom
Conversation
🦋 Changeset detectedLatest commit: 9f08708 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
| try { | ||
| const contract = getContract({ | ||
| address, | ||
| abi: [ |
There was a problem hiding this comment.
I'd rather define abi as a constant variable for reusability.
const EIP712_DOMAIN_ABI = [ { type: "function", name: "eip712Domain", inputs: [], outputs: [ { name: "fields", type: "bytes1", internalType: "bytes1" }, { name: "name", type: "string", internalType: "string" }, { name: "version", type: "string", internalType: "string" }, { name: "chainId", type: "uint256", internalType: "uint256" }, { name: "verifyingContract", type: "address", internalType: "address" }, { name: "salt", type: "bytes32", internalType: "bytes32" }, { name: "extensions", type: "uint256[]", internalType: "uint256[]" }, ], stateMutability: "view", }, ];
fix: #329