mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
14 lines
397 B
TypeScript
14 lines
397 B
TypeScript
export default [
|
|
{
|
|
inputs: [
|
|
{ internalType: 'string', name: 'name', type: 'string' },
|
|
{ internalType: 'string', name: 'symbol', type: 'string' },
|
|
{ internalType: 'address', name: 'diamond', type: 'address' },
|
|
],
|
|
name: 'create',
|
|
outputs: [{ internalType: 'address', name: '', type: 'address' }],
|
|
stateMutability: 'nonpayable',
|
|
type: 'function',
|
|
},
|
|
];
|