-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update contract and upgrade onchainkit version (#32)
Co-authored-by: Alissa Crane <alissa.crane@coinbase.com>
- Loading branch information
1 parent
33702ac
commit ea0370f
Showing
4 changed files
with
9 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,11 @@ | ||
export const BASE_SEPOLIA_CHAIN_ID = 84532; | ||
|
||
export const clickContractAddress = | ||
'0x67c97D1FB8184F038592b2109F854dfb09C77C75'; | ||
|
||
export const clickContractABI = [ | ||
{ | ||
type: 'function', | ||
name: 'click', | ||
inputs: [], | ||
outputs: [], | ||
stateMutability: 'nonpayable', | ||
}, | ||
] as const; | ||
|
||
export const collectionAddress = '0xd6915560d3bb24aec04dc42ef409921ed1931510'; | ||
export const comment = 'testing'; | ||
export const mintContractAddress = '0x777777722D078c97c6ad07d9f36801e653E356Ae'; | ||
export const mintContractAddress = '0x11b4128A343d9aB02bED83050c952f383EAb6B24'; | ||
export const mintABI = [ | ||
{ | ||
inputs: [ | ||
{ internalType: 'address', name: 'mintTo', type: 'address' }, | ||
{ internalType: 'uint256', name: 'quantity', type: 'uint256' }, | ||
{ internalType: 'address', name: 'collection', type: 'address' }, | ||
{ internalType: 'uint256', name: 'tokenId', type: 'uint256' }, | ||
{ internalType: 'address', name: 'mintReferral', type: 'address' }, | ||
{ internalType: 'string', name: 'comment', type: 'string' }, | ||
], | ||
inputs: [], | ||
name: 'mint', | ||
outputs: [], | ||
stateMutability: 'payable', | ||
stateMutability: 'nonpayable', | ||
type: 'function', | ||
}, | ||
] as const; | ||
export const mintReferral = '0x0000000000000000000000000000000000000000'; | ||
export const quantity = '1'; | ||
export const tokenId = '1'; |