Documentation
    Preparing search index...

    Class FilsnapAdapter

    Index

    Constructors

    Properties

    config:
        | undefined
        | {
            derivationPath: string;
            network: Network;
            rpc: { token: string; url: string };
            unit?: { decimals: number; symbol: "FIL" | "tFIL" };
        }
    provider: EIP1193Provider
    snap: Snap

    Methods

    • Estimate the gas for a message

      maxFee is optional and defaults to 100000000000000000 attoFIL (0.1 FIL)

      Parameters

      • params: {
            maxFee?: string;
            message: {
                gasFeeCap?: string;
                gasLimit?: number;
                gasPremium?: string;
                method?: number;
                nonce?: number;
                params?: string;
                to: string;
                value: string;
                version?: 0;
            };
        }

        fil_getGasForMessage RPC method params

      Returns Promise<
          | JsonifyObject<{ error: SnapError; result: null }>
          | JsonifyObject<{ error: null; result: MessageGasEstimate }>,
      >

    • Change the current network and derive a new account for that network

      Parameters

      • network: Network

        Network to switch to (mainnet, testnet, etc)

      Returns Promise<SnapResponse<{ account: {}; network: Network }>>

      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

      Parameters

      • params: Partial<
            {
                derivationPath: string;
                network: Network;
                rpc: { token: string; url: string };
                unit?: { decimals: number; symbol: "FIL" | "tFIL" };
            },
        > = {}

      Returns Promise<ConfigureResponse>

    • Disconnect provider

      Returns Promise<void>

      import { FilsnapAdapter } from 'filsnap-adapter'

      const adapter = await FilsnapAdapter.connect({
      provider: window.ethereum,
      snapId: 'npm:filsnap',
      })
      await adapter.disconnect()
    • Send a signed message

      Parameters

      • params: {
            message: {
                from: string;
                gasFeeCap: string;
                gasLimit: number;
                gasPremium: string;
                method: number;
                nonce: number;
                params: string;
                to: string;
                value: string;
                version: 0;
            };
            signature: { data: string; type: "SECP256K1" };
        }

      Returns Promise<SendMessageResponse>

    • Sign a Filecoin message

      Parameters

      • params: {
            gasFeeCap?: string;
            gasLimit?: number;
            gasPremium?: string;
            method?: number;
            nonce?: number;
            params?: string;
            to: string;
            value: string;
            version?: 0;
        }

      Returns Promise<SignMessageResponse>

    • Reconnects to an existing Filsnap installation

      Parameters

      • options: Omit<ConnectOptions, "config">

        Connect options without config

      Returns Promise<undefined | { account: AccountInfo; adapter: FilsnapAdapter }>

      Adapter instance and account info if snap is installed, undefined otherwise

      import { FilsnapAdapter } from 'filsnap-adapter'

      const connection = await FilsnapAdapter.reconnect({
      provider: window.ethereum,
      snapId: 'npm:filsnap'
      })

      if (connection) {
      const { adapter, account } = connection
      console.log('Reconnected to account:', account.address)
      }