Skip to content

CORE-171 #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
package-lock.json
sbin/*
7 changes: 2 additions & 5 deletions ALGO.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ declare type Backend = IBackend<AnyALGO_Ty> & {
version: number;
appApproval: string;
appClear: string;
escrow: string;
stateSize: number;
stateKeys: number;
mapDataSize: number;
Expand All @@ -43,10 +42,8 @@ declare type Backend = IBackend<AnyALGO_Ty> & {
};
};
declare type CompiledBackend = {
ApplicationID: number;
appApproval: CompileResultBytes;
appClear: CompileResultBytes;
escrow: CompileResultBytes;
};
declare type ContractInfo = number;
declare type Contract = IContract<ContractInfo, Address, Token, AnyALGO_Ty>;
Expand All @@ -68,7 +65,7 @@ export declare const randomUInt: () => ethers.BigNumber, hasRandom: {
interface Provider {
algodClient: algosdk.Algodv2;
indexer: algosdk.Indexer;
getDefaultAddress: () => Address;
getDefaultAddress: () => Promise<Address>;
isIsolatedNetwork: boolean;
signAndPostTxns: (txns: WalletTransaction[], opts?: any) => Promise<any>;
}
Expand Down Expand Up @@ -136,8 +133,8 @@ export declare const wait: (delta: BigNumber, onProgress?: OnProgress | undefine
declare type VerifyResult = {
compiled: CompiledBackend;
ApplicationID: number;
startRound: number;
Deployer: Address;
startRound: number;
};
export declare const verifyContract: (info: ContractInfo, bin: Backend) => Promise<VerifyResult>;
/**
Expand Down
2 changes: 1 addition & 1 deletion ALGO.d.ts.map

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

Loading