Comparing version 4.8.3 to 4.9.0
@@ -12,3 +12,3 @@ "use strict"; | ||
address = __1.Address.parseRaw('-1:3333333333333333333333333333333333333333333333333333333333333333'); | ||
source = new UnknownContractSource_1.UnknownContractSource('org.ton.elector', -1); | ||
source = new UnknownContractSource_1.UnknownContractSource('org.ton.elector', -1, 'Elector Contract'); | ||
client; | ||
@@ -15,0 +15,0 @@ constructor(client) { |
@@ -8,3 +8,4 @@ import { Address, Cell } from "../.."; | ||
backup(): string; | ||
describe(): string; | ||
} | ||
export declare function contractAddress(source: ContractSource): Promise<Address>; |
@@ -8,4 +8,6 @@ import { Cell } from "../.."; | ||
readonly type: string; | ||
constructor(type: string, workchain: number); | ||
readonly description: string; | ||
constructor(type: string, workchain: number, description: string); | ||
backup: () => never; | ||
describe: () => string; | ||
} |
@@ -13,5 +13,7 @@ "use strict"; | ||
type; | ||
constructor(type, workchain) { | ||
description; | ||
constructor(type, workchain, description) { | ||
this.type = type; | ||
this.workchain = workchain; | ||
this.description = description; | ||
} | ||
@@ -21,3 +23,6 @@ backup = () => { | ||
}; | ||
describe = () => { | ||
return this.description; | ||
}; | ||
} | ||
exports.UnknownContractSource = UnknownContractSource; |
@@ -18,2 +18,3 @@ /// <reference types="node" /> | ||
backup: () => string; | ||
describe: () => string; | ||
} |
@@ -40,3 +40,6 @@ "use strict"; | ||
}; | ||
describe = () => { | ||
return 'Simple Wallet Contract'; | ||
}; | ||
} | ||
exports.WalletV1R1Source = WalletV1R1Source; |
@@ -18,2 +18,3 @@ /// <reference types="node" /> | ||
backup: () => string; | ||
describe: () => string; | ||
} |
@@ -40,3 +40,6 @@ "use strict"; | ||
}; | ||
describe = () => { | ||
return 'Simple Wallet Contract (R2)'; | ||
}; | ||
} | ||
exports.WalletV1R2Source = WalletV1R2Source; |
@@ -18,2 +18,3 @@ /// <reference types="node" /> | ||
backup: () => string; | ||
describe: () => string; | ||
} |
@@ -40,3 +40,6 @@ "use strict"; | ||
}; | ||
describe = () => { | ||
return 'Simple Wallet Contract (R3)'; | ||
}; | ||
} | ||
exports.WalletV1R3Source = WalletV1R3Source; |
@@ -18,2 +18,3 @@ /// <reference types="node" /> | ||
backup: () => string; | ||
describe: () => string; | ||
} |
@@ -40,3 +40,6 @@ "use strict"; | ||
}; | ||
describe = () => { | ||
return 'Wallet V2 Contract'; | ||
}; | ||
} | ||
exports.WalletV2R1Source = WalletV2R1Source; |
@@ -18,2 +18,3 @@ /// <reference types="node" /> | ||
backup: () => string; | ||
describe: () => string; | ||
} |
@@ -40,3 +40,6 @@ "use strict"; | ||
}; | ||
describe = () => { | ||
return 'Wallet V2 Contract (R2)'; | ||
}; | ||
} | ||
exports.WalletV2R2Source = WalletV2R2Source; |
@@ -21,2 +21,3 @@ /// <reference types="node" /> | ||
backup: () => string; | ||
describe: () => string; | ||
} |
@@ -58,3 +58,6 @@ "use strict"; | ||
}; | ||
describe = () => { | ||
return `Wallet V3 Contract. WalletID = ${this.walletId}`; | ||
}; | ||
} | ||
exports.WalletV3R1Source = WalletV3R1Source; |
@@ -21,2 +21,3 @@ /// <reference types="node" /> | ||
backup: () => string; | ||
describe: () => string; | ||
} |
@@ -58,3 +58,6 @@ "use strict"; | ||
}; | ||
describe = () => { | ||
return `Wallet V3 Contract (R2). WalletID = ${this.walletId}`; | ||
}; | ||
} | ||
exports.WalletV3R2Source = WalletV3R2Source; |
{ | ||
"name": "ton", | ||
"version": "4.8.3", | ||
"version": "4.9.0", | ||
"repository": "https://github.com/ex3ndr/ton.git", | ||
@@ -5,0 +5,0 @@ "author": "Steve Korshakov <steve@korshakov.com>", |
164424
4216