mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-19 19:55:51 +00:00
* turn on lint tests * remove tsc * fix errors in src/utils/hashes * fix linter errors in src/utils * fix lint issues in test/ * resolve lint issues in src/client * resolve dependency cycle * resolve other linting issues in src/models * resolve rest of linting issues * fix tests * fix linting errors in test/integration * fix rest of linting issues * fix test name
8 lines
159 B
TypeScript
8 lines
159 B
TypeScript
import { Wallet } from 'xrpl-local'
|
|
|
|
const walletSecret = 'shK6YXzwYfnFVn3YZSaMh5zuAddKx'
|
|
|
|
const wallet = Wallet.fromSeed(walletSecret)
|
|
|
|
export default wallet
|