Skip to content

move and rename items contracts. They're token contracts with support… #790

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions packages/utils/abi/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@ export { abi as walletProxyHookAbi } from './wallet/walletProxyHook'
export { walletContracts } from './wallet'

export { ERC1155_ABI } from './tokens/erc1155'
export { ERC1155_ITEMS_ABI } from './tokens/erc1155Items'
export { ERC20_ABI } from './tokens/erc20'
export { ERC6909_ABI } from './tokens/erc6909'
export { ERC721_ABI } from './tokens/erc721'
export { ERC721_ITEMS_ABI } from './tokens/erc721Items'

export { ERC1155_SALE_ABI } from './sale/erc1155Sale'
export { ERC721_SALE_ABI } from './sale/erc721Sale'

export { ERC1155_SALE_ITEMS_ABI } from './saleItems/erc1155SaleItems'
export { ERC721_SALE_ITEMS_ABI } from './saleItems/erc721SaleItems'
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export const ERC1155_SALE_ITEMS_ABI = [
//And ERC 1155 token contract with batchMint support, to make it compatible with Sequence Sales contracts (../sale/erc1155Sale.ts)
export const ERC1155_ITEMS_ABI = [
{ type: 'constructor', inputs: [], stateMutability: 'nonpayable' },
{
type: 'function',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export const ERC721_SALE_ITEMS_ABI = [
//And ERC 721 token contract with batchMint support, to make it compatible with Sequence Sales contracts (../sale/erc721Sale.ts)
export const ERC721_ITEMS_ABI = [
{ type: 'constructor', inputs: [], stateMutability: 'nonpayable' },
{
type: 'function',
Expand Down
Loading