Update Lamden Vault Controller 🔗︎
Update to latest version 🔗︎
Update the Lamden Vault Controller (AKA Lamden Wallet Controller or LWC) to ^0.7.0
in any project you are currently using it in.
Update LWC Connection Info 🔗︎
Update the connection information you send to the LWC to include the networkName property with a value of arko
.
Legacy Lamden LWC Connection Info 🔗︎
const connectionRequest = {
appName: 'My Killer dApp',
version: '1.0.0',
logo: 'images/logo.png',
contractName: 'con_killer_app',
networkType: 'testnet',
}
Arko LWC Connection Info 🔗︎
const connectionRequest = {
appName: 'My Killer dApp',
version: '1.0.0',
logo: 'images/logo.png',
contractName: 'con_killer_app',
networkType: 'testnet',
networkName: 'arko' // ADD THIS HERE
}
Update Transaction Info 🔗︎
Update any transactions you send to the LWC with the networkName property with a value of arko
.
Legacy Lamden LWC Transaction Info 🔗︎
const txInfo = {
networkType: 'mainnet',
methodName: 'do_something',
kwargs: {
Str: 'awesome',
Float: {'__fixed__': '1000.000000006'}
Int: 1000
},
stampLimit: 100
};
Arko LWC Transaction Info 🔗︎
const txInfo = {
networkType: 'mainnet',
networkName: 'arko', // ADD THIS HERE
methodName: 'do_something',
kwargs: {
Str: 'awesome',
Float: {'__fixed__': '1000.000000006'}
Int: 1000
},
stampLimit: 100
};