@mintbase-js/sdk
Last updated
Last updated
The core @mintbase-js/sdk
is a set of convenience wrappers around invocation of Mintbase smart contract methods.
It also exposes a low-level isomorphic execute method that can be passed raw NearContractCall
information.
In order to invoke a smart contract method, the transaction has to be signed using a public/private key pair.
There are two options, both provided from the @mintbase-js/auth module:
Sign with a browser wallet
Sign with an authenticated account.
The easiest way to call mintbase token and market contracts are with the convenience methods.
Details such as the method name, arguments, gas supplied, deposits and some other less than convenient aspects of blockchain development will be abstracted away for you, or at least well documented in each example.
This is a work in progress, please reach out to us on Telegram for support.
execute
The excecute
method can be used without api helpers, however you will need to specify all NearContractCall
properties.
The method accepts any number of contract calls as arguments after the signingOptions
argument in first position:
Here is an example using the execute function call:
This type specifies properties of a contract calls. Each of the API convenience methods returns this object type, however you are welcome to create this object manually:
When calling more than one method with execute the returned value will be a promise with an array of results Promise<FinalExecutionOutcome[]>
To use execute with batching all you need to do is supply as many calls as intended through arguments execute(sign, mint, transfer, mint, burn )
in this manner executions will happen in order.
Some api wrappers might be a composition of various contract calls that are often executed in succession like depositStorage
+ list
or revoke
+ unlist
. The only difference is that in this case although you are technically calling execute with one method execute(sign, delist)
you will receive 2 outcome objects in the resulting promise.
If you would like to create a composition yourself you can do so like this.
Should you encounter this known issue Class PublicKey is missing in schema: publicKey
make sure you are not importing modules directly from near-api-js
, import them from @mintbase-js/sdk
instead to avoid the duplicate import.