feat: add Secp256k1 support to solana-web3.js (#12958)

* feat: add secp256k1 instruction

* feat: use buffer-layout for encoding as well

* style: use consistent naming for types

* style: update typings and make program functions static

* fix: attempt to resolve rollup issue

* fix: expose sysvar in typings

* fix: remove decode instruction functionality (for now)
This commit is contained in:
Josh
2020-10-22 13:15:24 -07:00
committed by GitHub
parent 84d56c62ce
commit 368aeb2cee
11 changed files with 380 additions and 8 deletions

4
web3.js/flow-typed/keccak.js vendored Normal file
View File

@ -0,0 +1,4 @@
declare module 'keccak' {
// TODO: Fill in types
declare module.exports: any;
}