collectibles

package
v0.162.13 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 1, 2023 License: MPL-2.0 Imports: 24 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type API

type API struct {
	RPCClient *rpc.Client
	// contains filtered or unexported fields
}

func NewAPI

func NewAPI(rpcClient *rpc.Client, accountsManager *account.GethManager, rpcFiltersSrvc *rpcfilters.Service, config *params.NodeConfig, appDb *sql.DB) *API

func (*API) Burn added in v0.158.0

func (api *API) Burn(ctx context.Context, chainID uint64, contractAddress string, txArgs transactions.SendTxArgs, password string, burnAmount *bigint.BigInt) (string, error)

func (*API) ContractOwner added in v0.141.1

func (api *API) ContractOwner(ctx context.Context, chainID uint64, contractAddress string) (string, error)

func (*API) DeployAssets added in v0.160.1

func (api *API) DeployAssets(ctx context.Context, chainID uint64, deploymentParameters DeploymentParameters, txArgs transactions.SendTxArgs, password string) (DeploymentDetails, error)

func (*API) DeployAssetsEstimate added in v0.160.1

func (api *API) DeployAssetsEstimate(ctx context.Context) (uint64, error)

Returns gas units + 10%

func (*API) DeployCollectibles added in v0.160.1

func (api *API) DeployCollectibles(ctx context.Context, chainID uint64, deploymentParameters DeploymentParameters, txArgs transactions.SendTxArgs, password string) (DeploymentDetails, error)

func (*API) DeployCollectiblesEstimate added in v0.142.9

func (api *API) DeployCollectiblesEstimate(ctx context.Context) (uint64, error)

Returns gas units + 10%

func (*API) EstimateBurn added in v0.158.0

func (api *API) EstimateBurn(ctx context.Context, chainID uint64, contractAddress string, burnAmount *bigint.BigInt) (uint64, error)

func (*API) EstimateMintAssets added in v0.162.1

func (api *API) EstimateMintAssets(ctx context.Context, chainID uint64, contractAddress string, walletAddresses []string, amount *bigint.BigInt) (uint64, error)

Estimate MintAssets cost.

func (*API) EstimateMintCollectibles added in v0.162.1

func (api *API) EstimateMintCollectibles(ctx context.Context, chainID uint64, contractAddress string, walletAddresses []string, amount *bigint.BigInt) (uint64, error)

func (*API) EstimateMintTokens added in v0.162.1

func (api *API) EstimateMintTokens(ctx context.Context, chainID uint64, contractAddress string, walletAddresses []string, amount *bigint.BigInt) (uint64, error)

func (*API) EstimateRemoteBurn added in v0.152.2

func (api *API) EstimateRemoteBurn(ctx context.Context, chainID uint64, contractAddress string, tokenIds []*bigint.BigInt) (uint64, error)

This is only ERC721 function

func (*API) MintAssets added in v0.162.1

func (api *API) MintAssets(ctx context.Context, chainID uint64, contractAddress string, txArgs transactions.SendTxArgs, password string, walletAddresses []string, amount *bigint.BigInt) (string, error)

Create the amount of assets tokens and distribute them to all walletAddresses. 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 (*API) MintCollectibles added in v0.162.1

func (api *API) MintCollectibles(ctx context.Context, chainID uint64, contractAddress string, txArgs transactions.SendTxArgs, password string, walletAddresses []string, amount *bigint.BigInt) (string, error)

Create the amounty of collectible tokens and distribute them to all walletAddresses.

func (*API) MintTokens added in v0.162.1

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 both assets and collectibles. Checks contract type and runs MintCollectibles or MintAssets function.

func (*API) MintedCount added in v0.158.0

func (api *API) MintedCount(ctx context.Context, chainID uint64, contractAddress string) (*big.Int, error)

func (*API) RemainingSupply added in v0.158.0

func (api *API) RemainingSupply(ctx context.Context, chainID uint64, contractAddress string) (*bigint.BigInt, error)

func (*API) RemoteBurn added in v0.152.2

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 Database added in v0.141.1

type Database struct {
	// contains filtered or unexported fields
}

func NewCommunityTokensDatabase added in v0.160.1

func NewCommunityTokensDatabase(db *sql.DB) *Database

func (*Database) GetTokenType added in v0.160.1

func (db *Database) GetTokenType(chainID uint64, contractAddress string) (protobuf.CommunityTokenType, error)

type DeploymentDetails

type DeploymentDetails struct {
	ContractAddress string `json:"contractAddress"`
	TransactionHash string `json:"transactionHash"`
}

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"`
}

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 Service

type Service struct {
	// contains filtered or unexported fields
}

Collectibles service

func NewService

func NewService(rpcClient *rpc.Client, accountsManager *account.GethManager, rpcFiltersSrvc *rpcfilters.Service, config *params.NodeConfig, appDb *sql.DB) *Service

Returns a new Collectibles Service.

func (*Service) APIs

func (s *Service) APIs() []ethRpc.API

APIs returns a list of new APIs.

func (*Service) Protocols

func (s *Service) Protocols() []p2p.Protocol

Protocols returns a new protocols list. In this case, there are none.

func (*Service) Start

func (s *Service) Start() error

Start is run when a service is started.

func (*Service) Stop

func (s *Service) Stop() error

Stop is run when a service is stopped.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL