s/move/transfer in system program to match solana

This commit is contained in:
Tyera Eulberg
2019-04-11 18:20:22 -07:00
committed by Michael Vines
parent 7f02185998
commit c1bbb9b291
6 changed files with 19 additions and 19 deletions

View File

@ -102,7 +102,7 @@ declare module '@solana/web3.js' {
space: number,
programId: PublicKey,
): Transaction;
static move(from: PublicKey, to: PublicKey, amount: number): Transaction;
static transfer(from: PublicKey, to: PublicKey, amount: number): Transaction;
static assign(from: PublicKey, programId: PublicKey): Transaction;
}