Skip to content

Commit

Permalink
fix up
Browse files Browse the repository at this point in the history
  • Loading branch information
talentlessguy committed Oct 30, 2024
1 parent face792 commit 0f20825
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 2 deletions.
33 changes: 33 additions & 0 deletions src/transaction-flow/input/BulkRenewal/BulkRenewal-flow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,39 @@ const abi = [
stateMutability: 'view',
type: 'function',
},
{
inputs: [
{
internalType: 'string',
name: 'name',
type: 'string',
},
],
name: 'NameAvailable',
type: 'error',
},
{
inputs: [
{
internalType: 'string',
name: 'name',
type: 'string',
},
],
name: 'NameBeyondWantedExpiryDate',
type: 'error',
},
{
inputs: [
{
internalType: 'string',
name: 'name',
type: 'string',
},
],
name: 'NameMismatchedPrice',
type: 'error',
},
] as const

const BulkRenewalFlow = ({ data }: Props) => {
Expand Down
4 changes: 2 additions & 2 deletions src/transaction-flow/transaction/bulkRenew.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ export const bulkRenewalContract = {
[mainnet.id]: '0xnotdeployedyet',
[goerli.id]: '0xdeprecated',
[localhost.id]: '0xnotdeployedyet',
[holesky.id]: '0x76aafA281Ed5155f83926a12ACB92e237e322A8C',
[sepolia.id]: '0xf9c8c83adda8d52d9284cdbef23da10b5f9869bf',
[holesky.id]: '0x3dCE478E4C880E96Ad3BF022acae38bef43F13eB',
[sepolia.id]: '0x0E714019e4BC65164d29960805259C1fA70E508a',
} as const

const displayItems = (
Expand Down

0 comments on commit 0f20825

Please sign in to comment.