Documentation ¶
Index ¶
- func GetInfiniteSupply() *big.Int
- type API
- func (api *API) Burn(ctx context.Context, chainID uint64, contractAddress string, ...) (string, error)
- func (api *API) DeployAssets(ctx context.Context, chainID uint64, deploymentParameters DeploymentParameters, ...) (DeploymentDetails, error)
- func (api *API) DeployAssetsEstimate(ctx context.Context) (uint64, error)
- func (api *API) DeployCollectibles(ctx context.Context, chainID uint64, deploymentParameters DeploymentParameters, ...) (DeploymentDetails, error)
- func (api *API) DeployCollectiblesEstimate(ctx context.Context) (uint64, error)
- func (api *API) DeployOwnerToken(ctx context.Context, chainID uint64, ownerTokenParameters DeploymentParameters, ...) (DeploymentDetails, error)
- func (api *API) DeployOwnerTokenEstimate(ctx context.Context) (uint64, error)
- func (api *API) EstimateBurn(ctx context.Context, chainID uint64, contractAddress string, ...) (uint64, error)
- func (api *API) EstimateMintAssets(ctx context.Context, chainID uint64, contractAddress string, ...) (uint64, error)
- func (api *API) EstimateMintCollectibles(ctx context.Context, chainID uint64, contractAddress string, ...) (uint64, error)
- func (api *API) EstimateMintTokens(ctx context.Context, chainID uint64, contractAddress string, ...) (uint64, error)
- func (api *API) EstimateRemoteBurn(ctx context.Context, chainID uint64, contractAddress string, ...) (uint64, error)
- func (api *API) GetAssetContractInstance(chainID uint64, contractAddress string) (*assets.Assets, error)
- func (api *API) GetCollectiblesContractInstance(chainID uint64, contractAddress string) (*collectibles.Collectibles, error)
- func (api *API) GetMasterTokenContractAddressFromHash(ctx context.Context, chainID uint64, txHash string) (string, error)
- func (api *API) MintTokens(ctx context.Context, chainID uint64, contractAddress string, ...) (string, error)
- func (api *API) NewAssetsInstance(chainID uint64, contractAddress string) (*assets.Assets, error)
- func (api *API) NewCollectiblesInstance(chainID uint64, contractAddress string) (*collectibles.Collectibles, error)
- func (api *API) NewMasterTokenInstance(chainID uint64, contractAddress string) (*mastertoken.MasterToken, error)
- func (api *API) PrepareMintAssetsData(walletAddresses []string, amount *bigint.BigInt) ([]common.Address, []*big.Int)
- func (api *API) PrepareMintCollectiblesData(walletAddresses []string, amount *bigint.BigInt) []common.Address
- func (api *API) RemainingSupply(ctx context.Context, chainID uint64, contractAddress string) (*bigint.BigInt, error)
- func (api *API) RemoteBurn(ctx context.Context, chainID uint64, contractAddress string, ...) (string, error)
- func (api *API) RemoteDestructedAmount(ctx context.Context, chainID uint64, contractAddress string) (*bigint.BigInt, error)
- func (api *API) ValidateWalletsAndAmounts(walletAddresses []string, amount *bigint.BigInt) error
- type AssetContractData
- type AssetInstance
- func (t AssetInstance) Mint(transactOpts *bind.TransactOpts, walletAddresses []string, ...) (*types.Transaction, error)
- func (t AssetInstance) PackMethod(ctx context.Context, methodName string, args ...interface{}) ([]byte, error)
- func (t AssetInstance) RemoteBurn(transactOpts *bind.TransactOpts, tokenIds []*big.Int) (*types.Transaction, error)
- func (t AssetInstance) SetMaxSupply(transactOpts *bind.TransactOpts, maxSupply *big.Int) (*types.Transaction, error)
- type CollectibleContractData
- type CollectibleInstance
- func (t CollectibleInstance) Mint(transactOpts *bind.TransactOpts, walletAddresses []string, ...) (*types.Transaction, error)
- func (t CollectibleInstance) PackMethod(ctx context.Context, methodName string, args ...interface{}) ([]byte, error)
- func (t CollectibleInstance) RemoteBurn(transactOpts *bind.TransactOpts, tokenIds []*big.Int) (*types.Transaction, error)
- func (t CollectibleInstance) SetMaxSupply(transactOpts *bind.TransactOpts, maxSupply *big.Int) (*types.Transaction, error)
- type Database
- type DeploymentDetails
- type DeploymentParameters
- type Manager
- func (m *Manager) GetAssetContractData(chainID uint64, contractAddress string) (*AssetContractData, error)
- func (m *Manager) GetAssetContractInstance(chainID uint64, contractAddress string) (*assets.Assets, error)
- func (m *Manager) GetCollectibleContractData(chainID uint64, contractAddress string) (*CollectibleContractData, error)
- func (m *Manager) GetCollectiblesContractInstance(chainID uint64, contractAddress string) (*collectibles.Collectibles, error)
- func (m *Manager) NewAssetsInstance(chainID uint64, contractAddress string) (*assets.Assets, error)
- func (m *Manager) NewCollectiblesInstance(chainID uint64, contractAddress string) (*collectibles.Collectibles, error)
- type MasterTokenInstance
- func (t MasterTokenInstance) Mint(transactOpts *bind.TransactOpts, walletAddresses []string, ...) (*types.Transaction, error)
- func (t MasterTokenInstance) PackMethod(ctx context.Context, methodName string, args ...interface{}) ([]byte, error)
- func (t MasterTokenInstance) RemoteBurn(transactOpts *bind.TransactOpts, tokenIds []*big.Int) (*types.Transaction, error)
- func (t MasterTokenInstance) SetMaxSupply(transactOpts *bind.TransactOpts, maxSupply *big.Int) (*types.Transaction, error)
- type Service
- func (s *Service) APIs() []ethRpc.API
- func (s *Service) GetAssetContractData(chainID uint64, contractAddress string) (*AssetContractData, error)
- func (s *Service) GetCollectibleContractData(chainID uint64, contractAddress string) (*CollectibleContractData, error)
- func (s *Service) Protocols() []p2p.Protocol
- func (s *Service) Start() error
- func (s *Service) Stop() error
- type ServiceInterface
- type TokenInstance
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetInfiniteSupply ¶
Types ¶
type API ¶
type API struct {
// contains filtered or unexported fields
}
func (*API) DeployAssets ¶
func (api *API) DeployAssets(ctx context.Context, chainID uint64, deploymentParameters DeploymentParameters, txArgs transactions.SendTxArgs, password string) (DeploymentDetails, error)
func (*API) DeployAssetsEstimate ¶
Returns gas units + 10%
func (*API) DeployCollectibles ¶
func (api *API) DeployCollectibles(ctx context.Context, chainID uint64, deploymentParameters DeploymentParameters, txArgs transactions.SendTxArgs, password string) (DeploymentDetails, error)
func (*API) DeployCollectiblesEstimate ¶
Returns gas units + 10%
func (*API) DeployOwnerToken ¶
func (api *API) DeployOwnerToken(ctx context.Context, chainID uint64, ownerTokenParameters DeploymentParameters, masterTokenParameters DeploymentParameters, txArgs transactions.SendTxArgs, password string) (DeploymentDetails, error)
func (*API) DeployOwnerTokenEstimate ¶
Returns gas units + 10%
func (*API) EstimateBurn ¶
func (*API) EstimateMintAssets ¶
func (api *API) EstimateMintAssets(ctx context.Context, chainID uint64, contractAddress string, fromAddress string, walletAddresses []string, amount *bigint.BigInt) (uint64, error)
Estimate MintAssets cost.
func (*API) EstimateMintCollectibles ¶
func (*API) EstimateMintTokens ¶
func (*API) EstimateRemoteBurn ¶
func (api *API) EstimateRemoteBurn(ctx context.Context, chainID uint64, contractAddress string, fromAddress string, tokenIds []*bigint.BigInt) (uint64, error)
This is only ERC721 function
func (*API) GetAssetContractInstance ¶
func (*API) GetCollectiblesContractInstance ¶
func (api *API) GetCollectiblesContractInstance(chainID uint64, contractAddress string) (*collectibles.Collectibles, error)
func (*API) GetMasterTokenContractAddressFromHash ¶
func (*API) MintTokens ¶
func (api *API) MintTokens(ctx context.Context, chainID uint64, contractAddress string, txArgs transactions.SendTxArgs, password string, walletAddresses []string, amount *bigint.BigInt) (string, error)
Universal minting function for every type of token.
func (*API) NewAssetsInstance ¶
func (*API) NewCollectiblesInstance ¶
func (api *API) NewCollectiblesInstance(chainID uint64, contractAddress string) (*collectibles.Collectibles, error)
func (*API) NewMasterTokenInstance ¶
func (api *API) NewMasterTokenInstance(chainID uint64, contractAddress string) (*mastertoken.MasterToken, error)
func (*API) PrepareMintAssetsData ¶
func (*API) PrepareMintCollectiblesData ¶
func (*API) RemainingSupply ¶
func (*API) RemoteBurn ¶
func (api *API) RemoteBurn(ctx context.Context, chainID uint64, contractAddress string, txArgs transactions.SendTxArgs, password string, tokenIds []*bigint.BigInt) (string, error)
This is only ERC721 function
type AssetContractData ¶
type AssetInstance ¶
type AssetInstance struct { TokenInstance // contains filtered or unexported fields }
Asset
func (AssetInstance) Mint ¶
func (t AssetInstance) Mint(transactOpts *bind.TransactOpts, walletAddresses []string, amount *bigint.BigInt) (*types.Transaction, error)
The amount should be in smallest denomination of the asset (like wei) with decimal = 18, eg. if we want to mint 2.34 of the token, then amount should be 234{16 zeros}.
func (AssetInstance) PackMethod ¶
func (AssetInstance) RemoteBurn ¶
func (t AssetInstance) RemoteBurn(transactOpts *bind.TransactOpts, tokenIds []*big.Int) (*types.Transaction, error)
func (AssetInstance) SetMaxSupply ¶
func (t AssetInstance) SetMaxSupply(transactOpts *bind.TransactOpts, maxSupply *big.Int) (*types.Transaction, error)
type CollectibleContractData ¶
type CollectibleInstance ¶
type CollectibleInstance struct { TokenInstance // contains filtered or unexported fields }
Collectible
func (CollectibleInstance) Mint ¶
func (t CollectibleInstance) Mint(transactOpts *bind.TransactOpts, walletAddresses []string, amount *bigint.BigInt) (*types.Transaction, error)
func (CollectibleInstance) PackMethod ¶
func (CollectibleInstance) RemoteBurn ¶
func (t CollectibleInstance) RemoteBurn(transactOpts *bind.TransactOpts, tokenIds []*big.Int) (*types.Transaction, error)
func (CollectibleInstance) SetMaxSupply ¶
func (t CollectibleInstance) SetMaxSupply(transactOpts *bind.TransactOpts, maxSupply *big.Int) (*types.Transaction, error)
type Database ¶
type Database struct {
// contains filtered or unexported fields
}
func (*Database) GetTokenPrivilegesLevel ¶
func (*Database) GetTokenType ¶
type DeploymentDetails ¶
type DeploymentParameters ¶
type DeploymentParameters struct { Name string `json:"name"` Symbol string `json:"symbol"` Supply *bigint.BigInt `json:"supply"` InfiniteSupply bool `json:"infiniteSupply"` Transferable bool `json:"transferable"` RemoteSelfDestruct bool `json:"remoteSelfDestruct"` TokenURI string `json:"tokenUri"` OwnerTokenAddress string `json:"ownerTokenAddress"` MasterTokenAddress string `json:"masterTokenAddress"` }
func (*DeploymentParameters) GetInfiniteSupply ¶
func (d *DeploymentParameters) GetInfiniteSupply() *big.Int
infinite supply for ERC721 is 2^256-1
func (*DeploymentParameters) GetSupply ¶
func (d *DeploymentParameters) GetSupply() *big.Int
func (*DeploymentParameters) Validate ¶
func (d *DeploymentParameters) Validate(isAsset bool) error
type Manager ¶
type Manager struct {
// contains filtered or unexported fields
}
func NewManager ¶
func (*Manager) GetAssetContractData ¶
func (m *Manager) GetAssetContractData(chainID uint64, contractAddress string) (*AssetContractData, error)
func (*Manager) GetAssetContractInstance ¶
func (*Manager) GetCollectibleContractData ¶
func (m *Manager) GetCollectibleContractData(chainID uint64, contractAddress string) (*CollectibleContractData, error)
func (*Manager) GetCollectiblesContractInstance ¶
func (m *Manager) GetCollectiblesContractInstance(chainID uint64, contractAddress string) (*collectibles.Collectibles, error)
func (*Manager) NewAssetsInstance ¶
func (*Manager) NewCollectiblesInstance ¶
func (m *Manager) NewCollectiblesInstance(chainID uint64, contractAddress string) (*collectibles.Collectibles, error)
type MasterTokenInstance ¶
type MasterTokenInstance struct { TokenInstance // contains filtered or unexported fields }
Master Token
func (MasterTokenInstance) Mint ¶
func (t MasterTokenInstance) Mint(transactOpts *bind.TransactOpts, walletAddresses []string, amount *bigint.BigInt) (*types.Transaction, error)
func (MasterTokenInstance) PackMethod ¶
func (MasterTokenInstance) RemoteBurn ¶
func (t MasterTokenInstance) RemoteBurn(transactOpts *bind.TransactOpts, tokenIds []*big.Int) (*types.Transaction, error)
func (MasterTokenInstance) SetMaxSupply ¶
func (t MasterTokenInstance) SetMaxSupply(transactOpts *bind.TransactOpts, maxSupply *big.Int) (*types.Transaction, error)
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Collectibles service
func NewService ¶
func NewService(rpcClient *rpc.Client, accountsManager *account.GethManager, pendingTracker *transactions.PendingTxTracker, config *params.NodeConfig, appDb *sql.DB) *Service
Returns a new Collectibles Service.
func (*Service) GetAssetContractData ¶
func (s *Service) GetAssetContractData(chainID uint64, contractAddress string) (*AssetContractData, error)
func (*Service) GetCollectibleContractData ¶
func (s *Service) GetCollectibleContractData(chainID uint64, contractAddress string) (*CollectibleContractData, error)
type ServiceInterface ¶
type ServiceInterface interface { GetCollectibleContractData(chainID uint64, contractAddress string) (*CollectibleContractData, error) GetAssetContractData(chainID uint64, contractAddress string) (*AssetContractData, error) }
type TokenInstance ¶
type TokenInstance interface { RemoteBurn(*bind.TransactOpts, []*big.Int) (*types.Transaction, error) Mint(*bind.TransactOpts, []string, *bigint.BigInt) (*types.Transaction, error) SetMaxSupply(*bind.TransactOpts, *big.Int) (*types.Transaction, error) PackMethod(ctx context.Context, methodName string, args ...interface{}) ([]byte, error) }
func NewTokenInstance ¶
func NewTokenInstance(api *API, chainID uint64, contractAddress string) (TokenInstance, error)
Click to show internal directories.
Click to hide internal directories.