Readonly
providerReadonly
snapfil_getGasForMessage
RPC method params
Change the chain
Chain to switch to. Can be a chain id (0x13a) or id (314) or network name (mainnet)
use changeNetwork instead and use getNetworkFromChainId
from 'iso-filecoin/utils'
Change the current network and derive a new account for that network
Network to switch to (mainnet, testnet, etc)
Response containing the new network and derived account
import { FilsnapAdapter, getProvider } from 'filsnap-adapter'
const adapter = await FilsnapAdapter.connect({
provider: getProvider(),
snapId: 'npm:filsnap',
config: { network: 'testnet' },
})
const response = await adapter.changeNetwork('mainnet')
console.log(response.result.network) // 'mainnet'
console.log(response.result.account.address) // 'f1...'
Configure the snap
FilSnapMethods.fil_configure params
Export the account private key from the snap
Get current account data
Request account info with balance from the snap
use getAccount instead
Request account address from the snap
use getAccount instead
Request account balance from the snap
Request account public key from the snap
Hex encoded public key
use getAccount instead
Get the RPC instance configured by Filsnap
RPC instance
Send a signed message
Sign arbitrary bytes
Data to sign
Sign a Filecoin message
Static
connectInstalls and connects to Filsnap
Connect options
Static
reconnectReconnects to an existing Filsnap installation
Connect options without config
Adapter instance and account info if snap is installed, undefined otherwise
Estimate the gas for a message
maxFee
is optional and defaults to100000000000000000
attoFIL (0.1 FIL)