[//]: # { "title": "@mintbase-js/sdk", "order": "0" }
@mintbase-js/sdk
Core Features
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.
Calling Smart Contract Methods
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.
Using API Methods
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.
{% hint style="warning" %}
This is a work in progress, please reach out to us on Telegram for support.
{% endhint %}
Using 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:
execute(
signingOptions: NearCallSigningOptions
calls: NearContractCall[],
): Promise<providers.FinalExecutionOutcome | providers.FinalExecutionOutcome[]>
Here is an example using the execute function call:
NearContractCall
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:
{% code title="executeContractMethod.ts" overflow="wrap" lineNumbers="true" %}
import { execute, MAX_GAS, ONE_YOCTO, transfer } from '@mintbase-js/sdk';
import { getWallet } from '@mintbase-js/auth';
import type {
NearContractCall,
NearCallSigningOptions,
FinalExecutionOutcome
} from '@mintbase-js/sdk';
const myCustomContractCall: NearContractCall<ExecuteArgsResponse>= {
signerId: 'you.near',
contractAddress: 'my.contract.address.near',
methodName: 'my_contract_method',
args: { },
gas: MAX_GAS,
deposit: ONE_YOCTO,
};
const transferCall = transfer({
nftContractId: 'mytokencontract.mintbase1.near',
transfers: [{
receiverId: 'bob.near',
tokenId: '123',
}],
})
const makeSmartContractCall = async (): Promise<FinalExecutionOutcome> => {
const wallet = await getWallet();
const options: NearExecuteOptions = {
wallet,
callbackUrl: 'https://www.yourwebsite.xyz/success'
}
return await execute(options, myCustomContractCall, transferCall);
}
makeSmartContractCall()
.then((res: FinalExecutionOutcome) => console.log('got transaction result:', res))
.catch((err) => console.error('things went wrong', err));
- please read more detailed information about the execute method here
{% endcode %}
Batching Transactions
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.
Composition of Calls
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.
const mintCall = mint({
nftContractId: 'placeholder',
ownerId: 'placeholder',
reference: 'placeholder',
});
const composed: NearContractCall = [mintCall, mintCall] as ContractCall[];
const result = execute(sign, composed) as FinalExecutionOutcome[];
Further
{% hint style="warning" %}
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.
{% endhint %}