Skip to content

Commit

Permalink
Build: (dc7bb71) MULTIVERSEX: add initial v3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeyAdoniev committed Nov 16, 2023
1 parent 9031371 commit 7f0d2a6
Show file tree
Hide file tree
Showing 86 changed files with 1,703 additions and 706 deletions.
2 changes: 1 addition & 1 deletion dist/config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions dist/consts.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ElrondParams, ElrondHelper } from "./helpers/elrond";
import { ElrondParams, ElrondHelper } from "./helpers/elrond/elrond";
import { TronParams, TronHelper } from "./helpers/tron";
import { Web3Params, Web3Helper } from "./helpers/evm/web3";
import { SupportedCurrency, SupportedCurrencyName } from "crypto-exchange-rate/dist/model/domain";
Expand All @@ -17,7 +17,7 @@ export declare enum TestNetRpcUri {
ELROND = "https://devnet-gateway.multiversx.com",
HECO = "https://http-testnet.hecochain.com",
BSC = "https://data-seed-prebsc-1-s1.binance.org:8545",
ROPSTEN = "https://goerli.infura.io/v3/cec5dc92097a46f0b895ac1e89865467",
ROPSTEN = "https://ultra-light-patina.ethereum-sepolia.discover.quiknode.pro/6f98178f32c668af8ee4bb1cc4b8b9308e29367b/",
AVALANCHE = "https://api.avax-test.network/ext/bc/C/rpc",
POLYGON = "https://polygon-mumbai.blockpi.network/v1/rpc/public",
FANTOM = "https://rpc.testnet.fantom.network/",
Expand Down Expand Up @@ -203,6 +203,7 @@ export declare enum v3_ChainId {
BSC = "BSC",
POLYGON = "MATIC",
ETHEREUM = "ETH",
ELROND = "MULTIVERSX",
DEFAULT = ""
}
interface ChainData<T extends ChainNonce> {
Expand Down
2 changes: 1 addition & 1 deletion dist/consts.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 10 additions & 8 deletions dist/consts.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/factory/factories.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 16 additions & 10 deletions dist/factory/factories.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/factory/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ElrondParams } from "../helpers/elrond";
import { ElrondParams } from "../helpers/elrond/elrond";
import { TronParams } from "../helpers/tron";
import { Web3Params } from "../helpers/evm/web3";
export * from "./utils";
Expand All @@ -9,7 +9,7 @@ import { Wallet } from "@hashgraph/hethers";
import { ethers } from "ethers";
import { AlgorandParams, AlgoSignerH, ClaimNftInfo } from "../helpers/algorand";
import { AptosParams } from "../helpers/aptos";
import { BalanceCheck, EstimateTxFeesBatch, GetFeeMargins, TransferNftForeignBatch, UnfreezeForeignNftBatch, WhitelistCheck, GetExtraFees, LockNFT, ClaimV3NFT } from "../helpers/chain";
import { BalanceCheck, EstimateTxFeesBatch, GetFeeMargins, TransferNftForeignBatch, UnfreezeForeignNftBatch, WhitelistCheck, GetExtraFees, LockNFT, ClaimV3NFT, GetClaimData } from "../helpers/chain";
import { DfinityParams } from "../helpers/dfinity/dfinity";
import { NearParams } from "../helpers/near";
import { SecretParams } from "../helpers/secret";
Expand Down Expand Up @@ -132,7 +132,7 @@ export type ChainFactory = {
}>;
hederaGetMintedCollection(from: number, receiver: string): Promise<any[]>;
lockNFT<SignerF, RawNftF, Resp>(fromChain: FullChain<SignerF, RawNftF, Resp>, toChain: FullChain<never, unknown, unknown>, nft: NftInfo<RawNftF>, sender: SignerF, receiver: string, fee?: BigNumber.Value): Promise<Resp | undefined>;
claimNFT<SignerF, RawNftF, Resp>(fromChain: FullChain<never, unknown, unknown>, toChain: FullChain<SignerF, RawNftF, Resp>, txHash: string, sender: SignerF, fee: string | undefined): Promise<Resp | undefined>;
claimNFT<SignerF, RawNftF, Resp>(fromChain: FullChain<never, unknown, unknown> & GetClaimData, toChain: FullChain<SignerF, RawNftF, Resp>, txHash: string, sender: SignerF, fee: string | undefined): Promise<Resp | undefined>;
estimateClaimFee(fromChain: FullChain<never, unknown, unknown>, storageContract: BridgeStorage | undefined): Promise<string>;
};
/**
Expand Down
Loading

0 comments on commit 7f0d2a6

Please sign in to comment.