Skip to content

Commit

Permalink
ntt/evm: added version 1.0.0 abis (#1921)
Browse files Browse the repository at this point in the history
* ntt/evm: added version 1.0.0 abis

* ntt/solana: added version 1.0.0 abis

* ntt/solana: updated ntt quoter abis

* ntt/solana: enabled mainnet support

* ntt: fix decimals

* ntt/solana: relayer fixes

* solana: use hard-coded funded pubkey for version tx

* solana: updated pubkey

* solana: better error messages
  • Loading branch information
kev1n-peters authored Apr 22, 2024
1 parent 602af40 commit 18587e1
Show file tree
Hide file tree
Showing 16 changed files with 7,467 additions and 69 deletions.
7 changes: 7 additions & 0 deletions sdk/src/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,10 @@ export class TokenNotRegisteredError extends Error {
super(TokenNotRegisteredError.MESSAGE);
}
}

export class InsufficientFundsForGasError extends Error {
static MESSAGE = 'Insufficient funds for gas';
constructor() {
super(InsufficientFundsForGasError.MESSAGE);
}
}
Loading

0 comments on commit 18587e1

Please sign in to comment.