1.2.2 • Published 4 years ago

starkware-wallet v1.2.2

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
4 years ago

starkware-wallet npm version

Starkware Wallet Library

Example

import { Wallet } from 'ethers';
import StarkwareWallet from 'starkware-wallet';

const rpcUrl = 'https://ropsten.mycustomnode.com';

const mnemonic = `puzzle number lab sense puzzle escape glove faith strike poem acoustic picture grit struggle know tuna soul indoor thumb dune fit job timber motor`;

const wallet = Wallet.fromMnemonic(mnemonic).connect(rpcUrl);

const store = {
  set: async (key: string, data: any) => {
    window.localStorage.setItem(key, JSON.stringify(data));
  },
  get: async (key: string) => {
    return JSON.parse(window.localStorage.getItem(key));
  },
  remove: async (key: string) => {
    window.localStorage.removeItem(key);
  },
};

//  Create StarkwareWallet
const starkwareWallet = new StarkwareWallet(wallet, store);

// Example payload
const payload = {
  id: 1,
  jsonrpc: '2.0',
  method: 'stark_account',
  params: {
    layer: 'starkex',
    application: 'starkexdvf',
    index: '0',
  },
};

// Resolve payload
const result = await starkwareWallet.resolve(payload);
// {
//     "id": 1,
//     "jsonrpc": "2.0",
//     "result": {
//         "starkPublicKey":"0x59a543d42bcc9475917247fa7f136298bb385a6388c3df7309955fcb39b8dd4",
//     }
// }

API

interface StarkwareWallet {
  controller: StarkwareController;
  setProvider(provider: string | providers.Porivder): void;
  setWalletIndex(walletIndex: number): void;
  resolve(payload: JsonRpcRequest): Promise<JsonRpcSuccess | JsonRpcError>;
}
1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago