You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It could be useful to add a method to deploy smart contracts throught the wallet provider so anyone can deploy a smart contract from a dapp.
Use cases could be deploying onChain games or multisig contract from a front end.
a simple function similar to callSC should be good:
publicasynccallSC(byteCode: Uint8Array,// the SC bytecodeamount: bigint,// the amount to pay to the block creator// maybe more arguments)Promise<TransactionDetail>{// the code}
an advanced feature could be the possibility to setup a "non persistent operation" setting (like in callSC)
The text was updated successfully, but these errors were encountered:
It could be useful to add a method to deploy smart contracts throught the wallet provider so anyone can deploy a smart contract from a dapp.
Use cases could be deploying onChain games or multisig contract from a front end.
a simple function similar to callSC should be good:
an advanced feature could be the possibility to setup a "non persistent operation" setting (like in callSC)
The text was updated successfully, but these errors were encountered: