Skip to content

Commit

Permalink
Merge pull request #27 from dominant-strategies/Tests
Browse files Browse the repository at this point in the history
tests
  • Loading branch information
Denis2626 authored Feb 9, 2024
2 parents 8e9e070 + 3bd0bf5 commit 0a0ee9f
Show file tree
Hide file tree
Showing 161 changed files with 10,796 additions and 3,091 deletions.
3 changes: 3 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FAUCET_PRIVATEKEY='0x6c1711e9f5697053542c5e8127f931363d811d6b7618482e421557d7ebe29173'
CHAIN_ID=1337
RPC_URL='http://localhost:8610'
6 changes: 6 additions & 0 deletions .env.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#This is only for running tests

CHAIN_ID=
FAUCET_PRIVATEKEY=
RPC_URL=

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
node_modules/**
output/**

.env
**/*.swp
**/*.tgz
dist/*.gz
50 changes: 50 additions & 0 deletions lib.commonjs/_tests/contracts/QRC20.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
declare const QRC20: {
_format: string;
contractName: string;
sourceName: string;
abi: ({
inputs: {
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
anonymous?: undefined;
name?: undefined;
outputs?: undefined;
} | {
anonymous: boolean;
inputs: {
indexed: boolean;
internalType: string;
name: string;
type: string;
}[];
name: string;
type: string;
stateMutability?: undefined;
outputs?: undefined;
} | {
inputs: {
internalType: string;
name: string;
type: string;
}[];
name: string;
outputs: {
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
anonymous?: undefined;
})[];
bytecode: string;
deployedBytecode: string;
linkReferences: {};
deployedLinkReferences: {};
};
export default QRC20;
//# sourceMappingURL=QRC20.d.ts.map
1 change: 1 addition & 0 deletions lib.commonjs/_tests/contracts/QRC20.d.ts.map

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

Loading

0 comments on commit 0a0ee9f

Please sign in to comment.