Skip to content

Commit 59cfb7d

Browse files
authored
Merge pull request #12 from flare-foundation:0.1.41
Update version to 0.1.41
2 parents 163f588 + 44c8219 commit 59cfb7d

File tree

21 files changed

+1059
-222
lines changed

21 files changed

+1059
-222
lines changed

coston/artifacts/contracts/IAssetManager.sol/IAssetManager.json

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,6 +676,12 @@
676676
"name": "EmergencyPauseCanceled",
677677
"type": "event"
678678
},
679+
{
680+
"anonymous": false,
681+
"inputs": [],
682+
"name": "EmergencyPauseTotalDurationReset",
683+
"type": "event"
684+
},
679685
{
680686
"anonymous": false,
681687
"inputs": [
@@ -851,6 +857,19 @@
851857
"name": "MintingExecuted",
852858
"type": "event"
853859
},
860+
{
861+
"anonymous": false,
862+
"inputs": [
863+
{
864+
"indexed": false,
865+
"internalType": "bool",
866+
"name": "paused",
867+
"type": "bool"
868+
}
869+
],
870+
"name": "MintingPaused",
871+
"type": "event"
872+
},
854873
{
855874
"anonymous": false,
856875
"inputs": [
@@ -1909,7 +1928,7 @@
19091928
},
19101929
{
19111930
"internalType": "uint256",
1912-
"name": "_valueNATWei",
1931+
"name": "_valuePoolTokenWei",
19131932
"type": "uint256"
19141933
}
19151934
],

coston/artifacts/contracts/IAssetManagerController.sol/IAssetManagerController.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,30 @@
11
[
2+
{
3+
"anonymous": false,
4+
"inputs": [
5+
{
6+
"indexed": false,
7+
"internalType": "address",
8+
"name": "assetManager",
9+
"type": "address"
10+
}
11+
],
12+
"name": "AssetManagerAdded",
13+
"type": "event"
14+
},
15+
{
16+
"anonymous": false,
17+
"inputs": [
18+
{
19+
"indexed": false,
20+
"internalType": "address",
21+
"name": "assetManager",
22+
"type": "address"
23+
}
24+
],
25+
"name": "AssetManagerRemoved",
26+
"type": "event"
27+
},
228
{
329
"inputs": [
430
{

coston/artifacts/contracts/IAssetManagerEvents.sol/IAssetManagerEvents.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,12 @@
583583
"name": "EmergencyPauseCanceled",
584584
"type": "event"
585585
},
586+
{
587+
"anonymous": false,
588+
"inputs": [],
589+
"name": "EmergencyPauseTotalDurationReset",
590+
"type": "event"
591+
},
586592
{
587593
"anonymous": false,
588594
"inputs": [
@@ -758,6 +764,19 @@
758764
"name": "MintingExecuted",
759765
"type": "event"
760766
},
767+
{
768+
"anonymous": false,
769+
"inputs": [
770+
{
771+
"indexed": false,
772+
"internalType": "bool",
773+
"name": "paused",
774+
"type": "bool"
775+
}
776+
],
777+
"name": "MintingPaused",
778+
"type": "event"
779+
},
761780
{
762781
"anonymous": false,
763782
"inputs": [

coston2/abis.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import IConfirmedBlockHeightExists from "./artifacts/contracts/IConfirmedBlockHe
2727
import IConfirmedBlockHeightExistsVerification from "./artifacts/contracts/IConfirmedBlockHeightExistsVerification.sol/IConfirmedBlockHeightExistsVerification.json";
2828
import ICoreVaultClient from "./artifacts/contracts/ICoreVaultClient.sol/ICoreVaultClient.json";
2929
import ICoreVaultClientSettings from "./artifacts/contracts/ICoreVaultClientSettings.sol/ICoreVaultClientSettings.json";
30+
import ICustomInstructionsFacet from "./artifacts/contracts/ICustomInstructionsFacet.sol/ICustomInstructionsFacet.json";
3031
import IDelegationAccount from "./artifacts/contracts/IDelegationAccount.sol/IDelegationAccount.json";
3132
import IDiamond from "./artifacts/contracts/diamond/interfaces/IDiamond.sol/IDiamond.json";
3233
import IDiamondCut from "./artifacts/contracts/diamond/interfaces/IDiamondCut.sol/IDiamondCut.json";
@@ -212,6 +213,7 @@ export const interfaceAbis: { [key: string]: any } = {
212213
IConfirmedBlockHeightExistsVerification: IConfirmedBlockHeightExistsVerification,
213214
ICoreVaultClient: ICoreVaultClient,
214215
ICoreVaultClientSettings: ICoreVaultClientSettings,
216+
ICustomInstructionsFacet: ICustomInstructionsFacet,
215217
IDelegationAccount: IDelegationAccount,
216218
IDiamond: IDiamond,
217219
IDiamondCut: IDiamondCut,

coston2/artifacts/contracts/IAssetManager.sol/IAssetManager.json

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,6 +676,12 @@
676676
"name": "EmergencyPauseCanceled",
677677
"type": "event"
678678
},
679+
{
680+
"anonymous": false,
681+
"inputs": [],
682+
"name": "EmergencyPauseTotalDurationReset",
683+
"type": "event"
684+
},
679685
{
680686
"anonymous": false,
681687
"inputs": [
@@ -851,6 +857,19 @@
851857
"name": "MintingExecuted",
852858
"type": "event"
853859
},
860+
{
861+
"anonymous": false,
862+
"inputs": [
863+
{
864+
"indexed": false,
865+
"internalType": "bool",
866+
"name": "paused",
867+
"type": "bool"
868+
}
869+
],
870+
"name": "MintingPaused",
871+
"type": "event"
872+
},
854873
{
855874
"anonymous": false,
856875
"inputs": [
@@ -1909,7 +1928,7 @@
19091928
},
19101929
{
19111930
"internalType": "uint256",
1912-
"name": "_valueNATWei",
1931+
"name": "_valuePoolTokenWei",
19131932
"type": "uint256"
19141933
}
19151934
],

coston2/artifacts/contracts/IAssetManagerController.sol/IAssetManagerController.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,30 @@
11
[
2+
{
3+
"anonymous": false,
4+
"inputs": [
5+
{
6+
"indexed": false,
7+
"internalType": "address",
8+
"name": "assetManager",
9+
"type": "address"
10+
}
11+
],
12+
"name": "AssetManagerAdded",
13+
"type": "event"
14+
},
15+
{
16+
"anonymous": false,
17+
"inputs": [
18+
{
19+
"indexed": false,
20+
"internalType": "address",
21+
"name": "assetManager",
22+
"type": "address"
23+
}
24+
],
25+
"name": "AssetManagerRemoved",
26+
"type": "event"
27+
},
228
{
329
"inputs": [
430
{

coston2/artifacts/contracts/IAssetManagerEvents.sol/IAssetManagerEvents.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,12 @@
583583
"name": "EmergencyPauseCanceled",
584584
"type": "event"
585585
},
586+
{
587+
"anonymous": false,
588+
"inputs": [],
589+
"name": "EmergencyPauseTotalDurationReset",
590+
"type": "event"
591+
},
586592
{
587593
"anonymous": false,
588594
"inputs": [
@@ -758,6 +764,19 @@
758764
"name": "MintingExecuted",
759765
"type": "event"
760766
},
767+
{
768+
"anonymous": false,
769+
"inputs": [
770+
{
771+
"indexed": false,
772+
"internalType": "bool",
773+
"name": "paused",
774+
"type": "bool"
775+
}
776+
],
777+
"name": "MintingPaused",
778+
"type": "event"
779+
},
761780
{
762781
"anonymous": false,
763782
"inputs": [

0 commit comments

Comments
 (0)